Help Me

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • blaise_tom
    New Member
    • Jul 2006
    • 3

    Help Me

    please help :confused:

    i have form1 with

    text1.text = which is a pass word feald
    comand1 = when clicked it shold check if password is corect and iff corect go to form2


    i have then form3 with

    text1.text = the text in it shold become the pass word used in form1 next time onwards when clicking COMAND1 in form3
    ( a new password feald i mean , which chainges the password which shold be typed in text1.text of form1 next time onwards)

    please send me the codes to do this to blaise.crowly@g mail.com in this maner if you donot mind:-
    YOU MAY POST IT HERE TOO
    CODE OF TEXT1 OF FORM1 = (WRIGHT IT HEARE OR JUST LEAVE IT FREE IF NO CODE IS NEEDED)

    CODE OF COMAND1 OF FORM1 = " "

    AND

    CODE OF TEXT1 OF FORM3=''''''''' ''''''''''''''' ''''''''''''''' '''

    CODE OF COMAND1 OF FORM3 = ''''''''''''''' ''''''''''''''' ''''''''''''''' ''''''

    THANKYOU IN ADVANCE :) :confused:
  • sashi
    Recognized Expert Top Contributor
    • Jun 2006
    • 1749

    #2
    Hi Tom,

    can you atleast try to please speak in plain english my fren?

    Comment

    • blaise_tom
      New Member
      • Jul 2006
      • 3

      #3
      Originally posted by sashi
      Hi Tom,

      can you atleast try to please speak in plain english my fren?
      :)
      se i just need the codes for each :

      comand1 of form1 : this is a passwod feald in form 1 when password is typed
      if corect it shold direct to form3 where u can change password

      comand1 of form three :here after typing new password in text1 and when clicked on comand1 in form3 the password shold be changed which shold be used in form 1

      a new password setter thats all

      regards
      blaise

      Comment

      • BSOB
        New Member
        • Jul 2006
        • 77

        #4
        I emailed you, but you didnt seem to get it so i registered and... here it goes again:
        Command1_click( ) 'of form1
        if text1.text = GetSetting("Pas s Saver", "Settings", "Pass", "blaise_tom ") then
        msgbox("Welcome !")
        form2.show
        unload me
        else
        msgbox("Um... try again?")
        end if
        end sub
        command1_click( ) of form3
        if len(text1.text) > 0 then
        SaveSetting "Pass Saver", "Settings", "Pass", text1.text
        msgbox ("Password '" & text1.text & "' has been saved."
        unload me
        else
        msgbox ("That pass word isnt long enough.")
        end if
        end sub

        'please note that the first time you run the program, your password will be
        'blaise_tom, its the "default".

        Comment

        • blaise_tom
          New Member
          • Jul 2006
          • 3

          #5

          thanks a lot
          :) :rolleyes: :)

          Comment

          Working...