Free Code: Auto Username/Password Key

Discussion in 'Free Source Codes' started by Jay kumar tailor, Nov 17, 2019.

    
  1. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Hi All,
    Jay Here

    Hope You Will Like This Way.

    No More Typing of Username/Password.
    You can Carry Your "Password" in A USB/Pen Drive.
    No one can Read/See your Password (Risk While Typing) With this.

    You can use Diffenent "KEY Sets" For Different User/Login Type.
    Hope in Future Developers May Develop Login With Fingerprint , USB Token(Digital signature).

    Code:
    [#Field: SVCUserName]
    Key : Userjkpass
    
    [Key: Userjkpass]
    Key : Ctrl+R
    Action : CALL : Pastejkpass
    
    
    [FUNCTION: Pastejkpass ]
    01:SET:SVLocalUserName : "Admin" ;; Your User Name
    02:TRIGGER KEY:ENTER
    03:TRIGGER KEY : P,A,S,S,W,O,R,D ;; Your Password (Use Comma After Every Character or Also Can Use Like "Password")
    04:TRIGGER KEY:ENTER
     
    Last edited: Nov 17, 2019
    sattam, Vashisth and psr like this.


  2. psr

    psr Member


    Hi Jay,

    Thanks for the code. But using Comma is not working. I used the following. How to change the code if we have to store multiple Usernames and passwords?


    [#Field: SVCUserName]
    Key : Userjkpass

    [Key: Userjkpass]
    Key : Ctrl+R
    Action : CALL : Pastejkpass


    [FUNCTION: Pastejkpass ]
    01:SET:SVLocalUserName : "new" ;; Your User Name
    02:TRIGGER KEY:ENTER
    03:TRIGGER KEY : "new";; Your Password (Use Comma After Every Character)
    04:TRIGGER KEY:ENTER
     
    Sanjeev S likes this.


  3. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Then Use
    Like This Way....
    Code:
    [#Field: SVCUserName]
        Key   : Userpass
    
       
        [Key: Userpass]
                Key     : Ctrl+R   
                Action  : CALL  :  Pastepass
    
    
    [FUNCTION:  Pastepass ]
    00: if:(##SVBackupName) Contains "jay kumar tailor"
    01:SET:SVLocalUserName : "Admin"
    02:TRIGGER KEY:ENTER
    03:TRIGGER KEY:"Password"
    04:TRIGGER KEY:ENTER
    05:Else 
    06:SET:SVLocalUserName : "Jaykumar"
    07:TRIGGER KEY:ENTER
    08:TRIGGER KEY:"Password"
    09:TRIGGER KEY:ENTER
    10:END IF
    
     
    naren1234, psr and sattam like this.


  4. anish

    anish Member


    Very Nice Brother ! You are knowledge in Function is very strong !
     


  5. NiravMerchant

    NiravMerchant Member


    Hi Jay Excellent Thought I have Improved the file for Multiple User login with hotkey, I have hard coded the things but once can use aggregate function to get user details with hotkey. please find the updated code
    require more idea and suggestions
    once again thanks to jay for excellent thought
     

    Attached Files:

    naren1234 likes this.


  6. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Thanks For Improving This code.

    Currently i Am Using For Multiple Site Login
    Where Username/Passwords Are Different on Every Site.
     


  7. NiravMerchant

    NiravMerchant Member


    My attached Code includes the same u can improve on that
     


  8. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Code:
    We Can Set Different UserNames And Passwords like....
    
    [FUNCTION:  Pastejkpass ]
    00: if:(##SVBackupName) Contains "Demo Company Branch 1"
    01:SET:SVLocalUserName : "Admin 1"
    02:Else
    02A: IF:(##SVBackupName) Contains "Demo Company Branch 2"
    03:SET:SVLocalUserName : "Admin 2"
    04:Else
    05:SET:SVLocalUserName : "Default/Common User Name"
    06:END IF
    06A:END IF
    07:TRIGGER KEY:ENTER
    08:TRIGGER KEY:"Common Password"
    09:TRIGGER KEY:ENTER

    in This Example User Name Is Different For Different Branches Or We Also Can Use Common UserName/Password for Others.
    in The Same Way We Can Use Different Username/Password For Different Company.
     
    naren1234 and Rohit Khedar like this.


  9. Jay kumar tailor

    Jay kumar tailor Well-Known Member


    Good Job.
    Keep It Up. :)
     


  10. jeetendra chopra

    jeetendra chopra New Member



  11. jeetendra chopra

    jeetendra chopra New Member


    not
    works
     
    yacob likes this.


  12. jeetendra chopra

    jeetendra chopra New Member


    how to place or modify user name and password in this txt tile
     


Share This Page