how can i display data from Access database in a msgbox in vb.net windows form?
how can i display data from Access database in a msgbox in vb.net windows form?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Sep 20, 2012, 3:05 AM
Try this...
Imports System.Data
Imports System.Data.OleDb
Public Class Form1
Dim ConnectionString As String = System.Configuration.ConfigurationSettings.AppSettings("dsn")
Dim con As OleDbConnection = New OleDbConnection(ConnectionString)
Dim com As OleDbCommand
Dim oledbda As OleDbDataAdapter
Dim ds As DataSet
Dim dt As DataTable
Dim str, sname As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
con.Open()
str = "select * from student"
com = New OleDbCommand(str, con)
Dim reader As OleDbDataReader = com.ExecuteReader
While reader.Read()
sname += reader(1) + vbCrLf
End While
MessageBox.Show(sname)
reader.Close()
con.Close()
End Sub
End Class
Thanks
If this post helps you mark it as answer