Results 1 to 14 of 14
  1. #1
    u1111u's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    uk
    Posts
    262
    Reputation
    9
    Thanks
    49
    My Mood
    Buzzed

    Exclamation *Tut* how to make a login system

    his tut is about how to make a simple login system on vb8

    first you will need:

    Brain!
    2 textbox's
    2 buttons
    2 labels

    Okay lets start!

    first go to file>new project
    Add all the stuuf u will ned
    (2 textbox's 2 buttons 2 labels)
    Then place them out how you want.

    First rename button1 on to:
    Login
    Secondly rename button2 to:
    Exit
    Then rename label 1 to:
    Username
    Then rename label2 to:
    Password

    now go to:
    Project>Add windows form>name it

    Now it should look some thing like this:



    Now lets get on to the code (Dont be scared it so so easy)

    Right code for exit:
    Me.Close
    Code for Login:
    If TextBox1.Text = ("Username") Then
    TextBox1.Text = ("Password")
    Form2.Show()

    If you want it to be a bit more professinal
    clcik on textbox2 look for password char and type *

    *note* I made this tut on my site so you know im not trying to take credit.

    thanks~
    u1111u
    Joe06 Backup

  2. The Following 3 Users Say Thank You to u1111u For This Useful Post:

    beteasta3 (08-21-2009),James00Gauge (11-26-2009),le condor (11-10-2009)

  3. #2
    Noxit's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    N:\O\X\I\T.exe
    Posts
    2,017
    Reputation
    24
    Thanks
    640
    My Mood
    Drunk
    Yea I forgot to do this, thanks.
    I will try to C++ soon.
    --














  4. #3
    u1111u's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    uk
    Posts
    262
    Reputation
    9
    Thanks
    49
    My Mood
    Buzzed
    thannks. will u thank me (press the thanks button?) please ty
    Joe06 Backup

  5. #4
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    This goes in the Visual Basis Section...

  6. #5
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    someone make me one and ill do a tut on how to hack it

    Quote Originally Posted by PixieCorp View Post
    This goes in the Visual Basis Section...

    no it goes in the tutorial section you dumb fuck
    Last edited by GG2GG; 08-09-2009 at 12:11 AM.

  7. #6
    Insomniac's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Seattle, WA
    Posts
    9,769
    Reputation
    1463
    Thanks
    4,294,967,295
    why just get the pass

  8. The Following User Says Thank You to Insomniac For This Useful Post:

    [V.I.P] (08-25-2009)

  9. #7
    n3m1s1s's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Torontonomnomnomom
    Posts
    1,752
    Reputation
    34
    Thanks
    232
    My Mood
    Fine
    O rly? You are M60? I doubt that...



  10. #8
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish
    Nice tut dude
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  11. #9
    D3sTrUvTiVe FlaRe's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    0
    Bit simpal, but thankss

  12. #10
    dragonzz's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    This is better:

    Code:
            If TextBox1.Text = ("Username") And TextBox2.Text = ("Password") Then
                Form2.show()
            Else
                MsgBox("You have entered an incorrect")

  13. #11
    sgtmattbaker's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    85
    Reputation
    10
    Thanks
    8
    Any one with a brain and a debugger could crack that in two minutes tops.

  14. #12
    James00Gauge's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    USA, Delaware
    Posts
    39
    Reputation
    10
    Thanks
    4
    My Mood
    Cool
    Hey I'd like to ask if you know how to code for other websites's usernames?
    I mean, if i were making a program that would log me into myspace, facebook, and twitter all at once, could you tell me the code to do this?

  15. #13
    tuve2's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Swe
    Posts
    396
    Reputation
    10
    Thanks
    22
    My Mood
    Drunk
    repost -.-

  16. #14
    JPU666's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Here is another code you can use

    Code:
    Dim setuser As String
    Dim setpass As String
    
    '//--- Form Load --- //
    Private Sub FormLoad() Handles Me.Load
     setuser = "Username Here"
     setpass = "Password Here"
    End Sub
    
    '//--- Press Button ---//
    Private Sub Login_Try () handles button1.click
     If ( Textbox1.Text = setuser ) and ( Textbox2.Text = setpass ) then
      Login_Accept()
     Else
      MsgBox("Wrong",MsgBoxStyle.Critical,"WARNING")
     End If
    End Sub
    
    '//--- Do this when the login is correct ---//
    Private Sub Login_Accept()
     Form2.Show()
    End Sub

Similar Threads

  1. [Tut]How to Make KoWarrock Account Easy
    By EyalZamir in forum WarRock Korea Hacks
    Replies: 181
    Last Post: 06-08-2008, 12:05 PM
  2. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM
  3. [TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)
    By jokuvaan11 in forum WarRock - International Hacks
    Replies: 14
    Last Post: 06-30-2007, 01:09 PM
  4. [Request]Tut how to make his own bypass
    By BurakG in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-08-2007, 02:46 PM
  5. Tut: how to make cheese
    By ace76543 in forum General
    Replies: 14
    Last Post: 01-14-2007, 09:39 AM

Tags for this Thread