ReeceAndrew
New member
- Joined
- Oct 28, 2008
- Messages
- 2
- Programming Experience
- Beginner
Hi Friends,
My name is Reece, and I'm still new to Visual Basic. I have decided that I am going to create a program for certain people to log into. I can get the login form to work with a basic code (all i really know) like this one:
But this doesn't appease me. I wish for it to create a "Register" button, so that users can create a username and password, so as to log-in. I want it to run off an Access database, and to automatically update the database whenever a new member signs up, and to check against current members when trying to log-in. If this is possible, and you could help me make it, or find a tutorial that would help a newbie like me, I would love y'all forever!!
Sincerly,
Reece
My name is Reece, and I'm still new to Visual Basic. I have decided that I am going to create a program for certain people to log into. I can get the login form to work with a basic code (all i really know) like this one:
VB.NET:
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
If UsernameTextBox.Text = "USER" And PasswordTextBox.Text = "PASSWORD" Then
Me.Hide()
Form1.Show()
But this doesn't appease me. I wish for it to create a "Register" button, so that users can create a username and password, so as to log-in. I want it to run off an Access database, and to automatically update the database whenever a new member signs up, and to check against current members when trying to log-in. If this is possible, and you could help me make it, or find a tutorial that would help a newbie like me, I would love y'all forever!!
Sincerly,
Reece