Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
DbConnCC = New OleDbConnection(connectString)
DbAdaptCC = New OleDbDataAdapter(querySQL, connectString)
DbAdaptCC.Fill(DbDataCC)
DataGrid1.SetDataBinding(DbDataCC, "ccdata")
End Sub
This code... along with any other type of binding gives me the subject error. This is the basic code, I have stripped out the try...catch and other stuff I had while trying to narrow this down... and I cant. I have googled this for hours and am lost. This is the simplest form that I can think of to get a binding done and it wont work. I know its the binding because I get no errors if I rmove anything after filling the dataset, so I assume its filling the dataset... what is happening here?