| How to create a login form in visual basic which is linked to SQL server database? HELP?

How to create a login form in visual basic which is linked to SQL server database? HELP?

Zacken asked:


I’m creating a database program in Visual basic 6 in which it has multi login information stored in the SQL server database.
I’d been searching for tutorails about it, but I can’t find one :(
A login form in which
the usernameID and Password is stored in the SQL server database

could someone help me? Please :( I’m trying to create a student information program with 2 types of log ins, first is
“Login as Admin” and 2nd one is “Log in as guest”
I need a tutorial on this, please do link me to a site, or gimme a link to a tutorial about this… thanks :)

Related posts:

  1. What is will I use if i want to make a program in visual basic which ask for a username, password? Kenz asked: Im tying to make a project in visual...
  2. I NEED URGENT HELP WITH VISUAL BASIC 6 programming? gogy_3 asked: The code for address example in VB 6...
  3. how to connect to an excel database using Visual Basic 2008? frosty asked: hey guys, i have set up a calculator...
  4. How to make the form to be transparent while all the other objects are visible in Visual Basic 6.0? Uditha Cyril Antony asked: I want to know how to...
  5. visual basic? sjw2922 asked: What web site can I view to look...

Filed Under Programming & Design |

Tagged With , ,

Comments

One Response to “How to create a login form in visual basic which is linked to SQL server database? HELP?”

  1. Jimmy J on April 14th, 2009 7:44 am

    Create the form with the user name and password, use ADO to connect to the database. When the user logs in select the count from the database of records with that user name and password. if the count = 0 then the login is wrong. else its correct.