|
-
April 1st, 2001, 10:23 PM
#1
MSHFlexGrid recordset selection
I created a ADO and linked MSHFlexGrid boject to that ADO. When I select any record in the grid, how to find which recordset in that ADO object is selcted?
If I use
ADO_object.Recordset.Fields(0).Value
I always get first recordset's value
Pl help.
-
April 1st, 2001, 10:38 PM
#2
Re: MSHFlexGrid recordset selection
You could try:
MSHFlexgrid.Recordset.Fields(0).Value
Don't know if that will work, but it's worth a try 
-
April 1st, 2001, 11:03 PM
#3
Re: MSHFlexGrid recordset selection
If you aren't doing sorting on the MSHFlexgrid, the following might work:
ADO_Object.Recordset.AbsolutePosition = MSHFlexGrid.Row
That should set the location in the record set to the current row of the flex grid.
Hope this helps,
Nathan Liebke
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|