Component One TrueDB Fetch row style

  • Thread starter Thread starter feudalac!
  • Start date Start date
F

feudalac!

I knew how to do it in VB6 but I can't figure it out in VB.NET

In vb6 I did this

Private sub TGDB_FetchRowStyle(...)

dim RStemp as recordset
RStemp = RSMaster.clone
RStemp.bookmark = RSmaster.bookmark
if rstemp!somefiled = "something" then TGDB.rowstyle=something
SET RStemp=nothing

End Sub



And i don't know what to do in VN.NET


I use DataTable to fill the grid TGDB.SetDataBinding (DataTableName,
Nothing, True)



I can't find a example...



Thanks
 
feudalac! said:
I knew how to do it in VB6 but I can't figure it out in VB.NET

In vb6 I did this

Private sub TGDB_FetchRowStyle(...)

dim RStemp as recordset
RStemp = RSMaster.clone
RStemp.bookmark = RSmaster.bookmark
if rstemp!somefiled = "something" then TGDB.rowstyle=something
SET RStemp=nothing

End Sub



And i don't know what to do in VN.NET


I use DataTable to fill the grid TGDB.SetDataBinding (DataTableName,
Nothing, True)



I can't find a example...



Thanks
never mind...

problem solved
 
Back
Top