Link to home
Start Free TrialLog in
Avatar of triphen
triphen

asked on

VB2010 ODBC SQL Query to DataGridView

Hello Experts,

I am coming over from VB6 to VB2010 and I am am having a hell of time getting the results of a basic query to display on a datagrid.

In VB6 I would only need 2 components: DataGridView and an ADODC object. I would link the DataGridView's DataSoucre to the ADODC object, put my ODBC info into the ADODC object, then write 2 lines of code:

adodc1.recordsource = "select * from table where condition = x"
adodc1.refresh

and bam!

I am completely lost in VB.net. I dont understand the Fill, BindingSource, TableAdapter, etc. and how they work with each other or why they are even needed.

Can someone point me in the right direction?
ASKER CERTIFIED SOLUTION
Avatar of triphen
triphen

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial