Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2007
    Posts
    172

    Grin how to get key from registry ?

    i have 2 registry keys stored user name and password... how can i get them in to input objects ? Input1 and Input2

    thats how i save them :
    Code:
    Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\Logon\\Users", "Username", ""..EncryptedUsername.."", REG_SZ);
    	Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\Logon\\Users", "Password", ""..EncryptedPassword.."", REG_SZ);
    thanks for any help

  2. #2
    Join Date
    Mar 2007
    Location
    HeaveN
    Posts
    534
    something like that

    Code:
    user = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\Logon\\Users", "Username", true);
    		pass = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\Logon\\Users", "Password", true);
    		getusername = Crypto.BlowfishDecryptString(user, "Username");
    		getpassword = Crypto.BlowfishDecryptString(pass, "Password");
    		Input.SetText("Input1", getusername);
    		Input.SetText("Input2", getpassword);

  3. #3
    Join Date
    Mar 2007
    Posts
    172
    hey Jack r u real ???

    thank u sooo much man

  4. #4
    Join Date
    Mar 2007
    Location
    HeaveN
    Posts
    534
    Your welcome ButtonMaker

    Just trying to help as much as I can...

Similar Threads

  1. Adding registry info to HKEY_USERS\S-1-5-21-xxxxxxxxxxx key
    By WallyWonka in forum Setup Factory 7.0
    Replies: 4
    Last Post: 03-28-2008, 02:02 PM
  2. Search Registry for Partial Key Name then Values
    By NitLions in forum AutoPlay Media Studio 6.0
    Replies: 1
    Last Post: 07-30-2007, 03:24 PM
  3. Create Registry Key
    By craigedmonds in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 01-30-2006, 04:50 PM
  4. Default value when getting a registry Key
    By ChristianD in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 11-09-2005, 11:14 AM
  5. Unable to find software?
    By NigelLacey in forum Visual Patch 2.0
    Replies: 4
    Last Post: 10-11-2005, 10:35 AM

Posting Permissions

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