Data Binding Forms in .NET 3.5

vbnetprogrammer

New member
Joined
Jul 14, 2010
Messages
2
Programming Experience
1-3
What happened with the data source configuration wizard? I connect to a datasource well enough, create a dataset with the wizard, but when I attempt to "drag and drop" the dataset onto the form, it creates a grid view with field names but displays no data when I try to run it. It used to work in VB 2005.
 
It's still the same in .net35. I think either the data source(database) has no data or your code doesnt contain a call to Fill[ByXXX]()?
 
DataBinding Wizard

Thanks, but I figured out the problem.

I have 64 bit machine, turns out I have to compile in 32 bit mode. There are no Access drivers for 64 Bit.
 
Back
Top