The log in system must be connected to my user details table in MS access. I have been able to enter user details to the database via vb.net but need to make a good log in system now. does anyone have any ideas?Does anyone have any good information on how to create a log in system on vb.net?
I know lots of things in creating a login system at VB
Here's the simplest tutorial for login system.
1.) create 2 textboxes, 1 for username, one for password
2.) create a ';Submit'; button
3.) double click the submit button, then copy paste these codes:
If TextBox1.Text = ';admin'; And TextBox2.Text = ';pass'; Then
Beep()
MessageBox.Show(';Succesfully logged on!';)
EndIf
No comments:
Post a Comment