pleased help me,I am new in vb.net programming. I have written codes for connection with MS ACCESS and I have created rooms.mdb database and I stored inside the bin directory but database is not found error is coming.
Imports System.Data.OleDb
Public Class NewUserScreen
Dim objOLEDBCon As OleDbConnection
Dim strInsertCommand As String
Dim objCmd As OleDbCommand
Private Sub btnAccept_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAccept.Click
objOLEDBCon = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Application.StartupPath & "in
ooms.mdb")
strInsertCommand = "insert into Users(Name, Password, Phone) values('" & txtUserName.Text & "','" & txtPassword.Text & "'," & txtPhone.Text & ")"
objCmd = New OleDbCommand(strInsertCommand, objOLEDBCon)
objOLEDBCon.Open()
Dim i As Integer
i = objCmd.ExecuteNonQuery
If (i > 0) Then
MsgBox("Your Data Inserted Successfully!")
End If
objOLEDBCon.Close()
End Sub
End Class