PDA

Click to See Complete Forum and Search --> : Datagrid Control


Bam_BamIR
Sep 21st, 2000, 07:42 PM
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

sanon
Sep 21st, 2000, 08:57 PM
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:

Text1.Text = DBGrid.Col
Text2.Text = DBGrid.Row
Text3.Text = DBGrid.Text

Bam_BamIR
Sep 21st, 2000, 11:49 PM
sAddress = DataGrid1.Columns(0).CellValue(DataGrid1.Bookmark)
here is what i have so far but really doesnt work that well any ideas?