Announcement

Collapse
No announcement yet.

create my own value and data name from 2 list inputs

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • create my own value and data name from 2 list inputs

    hi there

    how i can create REG_SZ registry file and name them different names using 2 inputs and 1 button

    to this path ( HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run )

    example

    change it from this
    PHP Code:
    Registry.SetValue(HKEY_LOCAL_MACHINE"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run""MyValue""My Data"REG_SZ); 

    to this
    PHP Code:
    Registry.SetValue(HKEY_LOCAL_MACHINE"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run""jack1""jack2"REG_SZ); 
    i want to specify my own value and data name

    it looks like this



    my project is attached to this thread without codes

    thank you
    Attached Files

  • #2
    why i can't find any help ? is there anything wrong with my thread ?

    i want to create REG_SZ and rename value and data to another names using 2 inputs

    to this path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run

    thanks

    Comment


    • #3
      Originally posted by jack View Post
      why i can't find any help ?
      Well, it is my guess that you haven't even looked at the documentation.

      There are two actions which can be used to get the text typed into an Input object, and there are examples in the help how to use them. There is also no shortage of demo projects using single line or multiline Input objects, and you could have look at some of them to see how you read text provided in an Input field. The less effort you show, the less help you will get from me.

      And attempting to write stuff into the registry when you clearly don't have basic knowledge of how to write a program is a terrible idea.

      Ulrich
      Last edited by Ulrich; 04-22-2013, 05:38 PM.

      Comment

      Working...
      X