A
Aurel
Guest
Due tu the help of the FAQ i used
To connect to my database (although i dont know yet if this works)
and now, i have the problem, that i would like to show the information provided by the table (its an Adresslist)
in Textboxes and not in a datagrid or something like that
Any Idea ?
Code:
Dim strConnString As String = "Provider=Microsoft.JET.OLEDB.4.0;data source=F:\Manfred\Fraktura\Fraktura.mdb"
Dim sqlString As String = "SELECT * FROM Customer"
'Connection object
Dim OleDbConnection As New System.Data.OleDb.OleDbConnection(strConnString)
'Create data adapter object
Dim OleDbDataAdapter As New System.Data.OleDb.OleDbDataAdapter(sqlString, OleDbConnection)
' Create a dataset object and fill with data using data adapter's Fill method
Dim dataSet As New DataSet()
OleDbDataAdapter.Fill(dataSet, "Kunden")
and now, i have the problem, that i would like to show the information provided by the table (its an Adresslist)
in Textboxes and not in a datagrid or something like that
Any Idea ?