Hi,
Click on the oledbdataadapter1 in the properties you will see in the
bottom you will see generate dataset. After that wizard is finished you
will see the dataset in the datasource property of the datagrid. One last
step in the form load event you need to fill the dataset.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
DataSet11.Clear()
OleDbDataAdapter1.Fill(DataSet11)
End Sub
Ken
-------------------------
"john andrew" <(E-Mail Removed)> wrote in message
news

81E4AA8-7480-48E7-B24E-(E-Mail Removed)...
--
hello
I have VB.net standard.
I thought this version has no data access but I have data controls .
Do these things work with standard?
Can i connect to a access database? I tried OLEadapter1 and a datagrid but
nothing happens when i click on datasource property like VB6...i dont know,
can anyone help please.