anyone know how to retrieve a specific vale from a cell using the mouse down event haveing problems with useing col property with bookmark property not acting appropriatly
Printable View
anyone know how to retrieve a specific vale from a cell using the mouse down event haveing problems with useing col property with bookmark property not acting appropriatly
If you can show your code, it will be good to understand what is your problem. However, if you want to retrive the data from the specific cell, you can refer directly to the grid properties.
For example:
Code:Text1.Text = DBGrid.Col
Text2.Text = DBGrid.Row
Text3.Text = DBGrid.Text
sAddress = DataGrid1.Columns(0).CellValue(DataGrid1.Bookmark)
here is what i have so far but really doesnt work that well any ideas?