I haven a problem with this conversion. And with my lack of experience I would take a long time finding out how this works so here's the question:

This is the original code:
VB Code:
  1. grdDataGrid1.SelBookmarks.Add datPlanRS.Recordset.Bookmark

and this is how it should look like now:
VB Code:
  1. grdDataGrid1.SelBookmarks.Add rs1.Bookmark

the datagrid was first a regular DBgrid and now it is a MSHFlexgrid. And the connection was a normal Data component and now I'm using a fully coded connection (ADODB connection)
I don't know what this code does but it has come across a few times so I gues it's important

Anyone know what this is and how I can convert it to ADO?


WiseGuy