Results 1 to 6 of 6
  1. #1
    Nercrojuice's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    4

    help with my lock screen system? ( visual basic 2010 ! )

    hey guys,

    i have a screen lock system i created, but for some strange reason in the settings the default password is meant to be "1234" so they can login and change it to what the like, but it just isn't working..

    any advice?

    please add me on skype @ connpressive then i can show you the code and everything else, making it more easy!

  2. #2
    rabbit.coder's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    50
    mate you have to show us your code if we are to be able to help.

  3. #3
    Womanizer`'s Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1,438
    Reputation
    103
    Thanks
    1,593
    My Mood
    Angelic
    We can't tell you anything unless you give us some code or explain us what you are trying to do.

  4. #4
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    It's simple really, all you have to do is have the customized password saved in a textfile somewhere, probably appdata.

    All you have to do is check if the textfile exists.

    So, once the user creates a text file, it will use that password and not the default. Though, I dunno why you need a default password..

    Example:

    Code:
    If My.Computer.FileSystem.FileExists("C:\password.txt") Then
    'read the textfile
    'see if they typed in the right password
    Else
    If Textbox1.text = "1234" Then
    Msgbox("Welcome! Please create a password.")
    'execute a new form to come up for them to enter a password
    End If
    End If

  5. #5
    Nercrojuice's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by PepsiXHacker View Post
    It's simple really, all you have to do is have the customized password saved in a textfile somewhere, probably appdata.

    All you have to do is check if the textfile exists.

    So, once the user creates a text file, it will use that password and not the default. Though, I dunno why you need a default password..

    Example:

    Code:
    If My.Computer.FileSystem.FileExists("C:\password.txt") Then
    'read the textfile
    'see if they typed in the right password
    Else
    If Textbox1.text = "1234" Then
    Msgbox("Welcome! Please create a password.")
    'execute a new form to come up for them to enter a password
    End If
    End If
    thank you

  6. #6
    ySoNoob's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    United States
    Posts
    622
    Reputation
    31
    Thanks
    2,250
    My Mood
    Fine
    well its solved!



Similar Threads

  1. Help with creating a program in visual basic :)
    By unit5678 in forum Runescape Help
    Replies: 10
    Last Post: 03-22-2013, 07:56 PM
  2. [Help] Help with Pro Perks & All Challenges by Visual Basic 2010 Express
    By MarioFreitag17 in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 9
    Last Post: 01-06-2013, 03:38 PM
  3. [Help Request] Visual Basic 2010 help with listboxes
    By Ian in forum Visual Basic Programming
    Replies: 3
    Last Post: 10-18-2012, 09:30 PM
  4. PA HELP PANU GUMAWA NG INJECTOR USING VISUAL BASIC 2010
    By public hucks in forum WarRock Philippines Help & Discussions
    Replies: 5
    Last Post: 09-10-2012, 09:16 AM
  5. [Help] with a Quiz program in Visual Basic
    By shawnking in forum Visual Basic Programming
    Replies: 12
    Last Post: 03-31-2011, 02:40 PM