Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid/Recordset Binding
Message
From
26/11/2002 10:01:10
 
 
To
26/11/2002 00:27:15
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00726581
Message ID:
00726993
Views:
16
This message has been marked as the solution to the initial question of the thread.
>Hi J
>
>When and how would I assign the myRecordset fields to certain DataGrid1 columns...?
>
>Thanks again!

When you assign your recordset as the datasource all columns from it are visible on the grid. You can't specify which fields show in which columns but you can control which are visible by changing their Visible property to False. For example:
DataGrid1.Columns(1).Visible = False
Where the columns collection is zero-based. If you want a particular order you need to control that with your SELECT statement. HTH,
Previous
Reply
Map
View

Click here to load this message in the networking platform