M
Miro
I think i have found my problem following an example ive searched for on the
net.
I am using vb.net 2005 express.
What I am looking for is a drag drop from the toolbar that is an
OleDbConnectionOleDbConnection and a OleDbDataAdapter so I can drag and drop
these on the from, and Connect them to an mdb file.
What I think I have come to, is that in 2005 Express you cannot do this.
You must code it manually all through code, such as
'Example: ===========
Dim daFileAdapter As New OleDb.OleDbDataAdapter()
daFileAdapter = New OleDb.OleDbDataAdapter("Select * From
Teacher", Connection )
Dim FileCommandBuilder As OleDb.OleDbCommandBuilder
FileCommandBuilder = New
OleDb.OleDbCommandBuilder(daFileAdapter)
Dim dtDataTable As New DataTable()
.... and so on
'==============
Can someone please let me know if the drag drop is possible in the VB 2005
Express ? - Or is it available in the Non Express Version ?
I hope this makes sence.
Thanks,
Miro
net.
I am using vb.net 2005 express.
What I am looking for is a drag drop from the toolbar that is an
OleDbConnectionOleDbConnection and a OleDbDataAdapter so I can drag and drop
these on the from, and Connect them to an mdb file.
What I think I have come to, is that in 2005 Express you cannot do this.
You must code it manually all through code, such as
'Example: ===========
Dim daFileAdapter As New OleDb.OleDbDataAdapter()
daFileAdapter = New OleDb.OleDbDataAdapter("Select * From
Teacher", Connection )
Dim FileCommandBuilder As OleDb.OleDbCommandBuilder
FileCommandBuilder = New
OleDb.OleDbCommandBuilder(daFileAdapter)
Dim dtDataTable As New DataTable()
.... and so on
'==============
Can someone please let me know if the drag drop is possible in the VB 2005
Express ? - Or is it available in the Non Express Version ?
I hope this makes sence.
Thanks,
Miro