As title show. I still not able to connect my ms.access login database . Please help me ~

        Dim con As New OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\leong\Documents\Visual Studio 2010\Projects\WindowsApplication4\WindowsApplication4\coursework.accdb")
        ' Dim cmd As OleDbCommand = New OleDb.OleDbCommand("SELECT * FROM AdminUser WHERE Username ='" & Usernametxt.Text & "' AND Password ='" & Passwordtxt.Text & "'", con)
        Dim cmd As New OleDb.OleDbCommand("SELECT * FROM AdminUser WHERE Username = 'admin' AND Password = 'admin'", con)
            con.Open()


        Dim sdr As OleDb.OleDbDataReader

        sdr = cmd.ExecuteReader()
        ' If the record can be queried, Pass verification and open another form.  
        If (sdr.Read() = True) Then
            MessageBox.Show("The user is valid!")

        Else
            MessageBox.Show("The user is invalid!")
        End If


        sdr.Close()
        con.Close()

What error is being thrown?

We can't begin to debug if we don't know the region to start.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.