Populating variables into a DataGrid

Terje

Member
Joined
Jul 2, 2004
Messages
5
Programming Experience
Beginner
[font=verdana, arial, helvetica]Does anyone know if/how I can populate a DataGrid with data (variables) within a desktop application with vb.net without using a database?

Thanks in advance

Terje
[/font]
 
You can create a dataSource (anything that implements the IList or IListSource interface) and set the DataSource property of the dataGrid to that object. Some things that implement the IList or IListSource interface are DataTables, Arrays, and Collections.
 
Back
Top