Basically what I want to do is read multiple values from an access database and place that value in a groupbox on the form.
Can anyone explain how I can do this and give me some code examples?
This is what I have so far:
Code:Dim conn As New OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0;Data Source=" & Application.StartupPath & "\t4c.mdb") Dim adapter As New OleDbDataAdapter("SELECT * FROM Spells", conn) Dim dt As New DataSet("Spells") adapter.Fill(dt, "Spells")




Reply With Quote