VB 2008, Login Form With Access DB

nstokes

New member
Joined
Feb 13, 2008
Messages
2
Programming Experience
Beginner
I am new to VB 2008, i have used VB 6 a few years ago and i have forgotton everything i knew. I am trying to make a login form where the user has to type there username and password in. I have a access database with the usernames and passwords in it, how do i get VB to check the username and passwords with the ones in the access database and let them login in if there correct and not log in if there incorrect.
 
For a login form, I've made one here: http://www.vbdotnetforums.com/showthread.php?t=3949

All you need to do is pull the usernames and passwords from the DB and compare it to what's returned from the login window

You'll want to use a Connection, DataAdapter, DataSet and possibly a DataView to get data out of the DB.
 
Back
Top