The second step for the procedure should be:
' Bind the DataGridView to the BindingSource
' and load the data from the database.
bindingSource1 =
New BindingSource()
Me.dataGridView1.DataSource = Me.bindingSource1
GetData("select * from Customers")
Note te use of the default constructor por the BindingSource class.