Differences between VB6 and VB.NET for COP3175

Some properties that are different

VB6 VB.NET
Label.Caption Label.Text
Form.Caption Form.Text
ListBox.Clear ListBox.Items.Clear( )
ListBox.List(0) ListBox.Items.Item(0)
ListBox.ListCount ListBox.Items.Count
ListBox.AddItem ListBox.Items.Add

Using a DataGrid control to view a table from an Access database

The steps for filling a data grid with data from an access table is completely different in VB.NET. There is no longer an ADO Data Control to tie the connection to the data grid. In its place is a DataAdapter and a DataSet. The DataAdapter handles the interface between VB and the Access database. The DataSet contains a copy of the data that is in the database. The DataSet uses the DataAdapter to connect to the database.

Changing Properies in VB.NET