Results 1 to 3 of 3

Thread: Basic Login System

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2008
    Posts
    493

    Arrow Basic Login System

    Here is a Quick tutorial on how to make a Login System...

    HOW TO:

    1) Create a project and name it whatever you want...

    2) Create A Button and a Textbox...

    3) View the code on your Button and put...
    Code:
            If Not TextBox1.Text = "VB6Learner" Then
                MsgBox("Invalid Password")
            End If
            If TextBox1.Text = "VB6Learner" Then
                LoggedIn.ShowDialog()
            End If
    4) Thats all!

    This is very easy and can be done within a minute lol...
    I thought I should just give this for all the beginners and all the people that might of just wanted to know how to do this! I added A little extra in the Logged in form nothing that special tho...
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width