Steps How to Connect Login Form in VB.net to MS Access "Code"


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 
  
Dim con As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Application.StartupPath & "\Login.accdb") 
  
Dim cmd As OleDbCommand = New OleDbCommand( _ 
  
"SELECT * FROM tblusers WHERE USERNAME = '" & _ 
  
TextBox1.Text & "' AND [PASSCODE] = '" & TextBox2.Text & "' ", con) 
  
Dim user As String = "" 
  
Dim pass As String = "" 
  
  
  
  
con.Open() 
  
Dim sdr As OleDbDataReader = cmd.ExecuteReader() 
  
If (sdr.Read() = True) Then 
  
user = sdr("USERNAME") 
  
pass = sdr("PASSCODE") 
  
MessageBox.Show("Login Successfully!") 
  
Me.Close() 
  
Else 
  
MessageBox.Show("Invalid username or password!") 
  
End If 
  
End Sub