I would like to get the text in a specific cell in a datagrid. I know with VB.NET, you can use grid.Item() and it can also be done using a flexgrid in VB6 with no problem. But for speed reasons (a datagrid + ado loads records faster than ado + flexgrid because of the need to populate the grid programmatically), I would like to stick with a datagrid. I'd rather use a flexgrid because I prefer its fuctionality, but when loading 30 columns of data with 10,000+ entries, it bogs the application down a bit. The datagrid populates pretty much instantaneously.

So I have the datagrid and ado recordsource set to "select * from results" And I want to get the text in the grid from column x, curent row (grid.Row)

Sounds easy enough, but I can't find anything about it for VB6.



Thanks for the help.