hi friends,
i m very newbie to vb.net.
i'm using opendialog control to select the database file. this works for me.
Private Sub btnbrowse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnbrowse.Click
opendatabase.ShowDialog()
txtfilename.Text = opendatabase.FileName
End Sub
Then i need to connect with the actual code.
i'm able to connect my database only by giving the direct path in the code.
dbProvider = "PROVIDER=Microsoft.Jet.OLEDB.4.0;"
dbSource = "Data Source = G:\module1\module1\student.mdb"
but i need some other way to access database path from the textbox( i.e., in my code it is txtfilename.text).
dbProvider = "PROVIDER=Microsoft.Jet.OLEDB.4.0;"
dbSource = "Data Source = txtfilename.text"
i need your help friends..
-- Thanks in advance...
--With Regards--
Hema..