Announcement

Collapse
No announcement yet.

reg entry on Windows 7 64-bit

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

  • reg entry on Windows 7 64-bit

    Why are the values for the registry entries in Windows 7 not registered?

    here's an example:
    Registry.SetValue (HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\MultiKey\\Dumps\\00007 50A", "Seed3", "c84a" REG_DWORD);

    c84a = 0 >>> Why is the entry 0 ???

  • #2
    you must set your value with decimal format: c84a=51274
    Registry.SetValue (HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\MultiKey\\Dumps\\0 0007 50A", "Seed3", "51274" REG_DWORD);

    Comment


    • #3
      Hello Samio,
      Thanks for pointing out because it was a direct hit!

      But Now that I have eliminated the one I have the next problem and wonder why only the first value is entered !?

      Registry.SetValue (HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\MultiKey\\dumps\\00007 50A", "hlkMemory", "4c 45,58,2d,43,4f,4d,20,47,6d,62.48,20,20,20,20,20,20 ,20,20,33 "REG_BINARY);

      4c,45,58,2d,43,4f,4d,20,47,6d,62.48,20,20,20,20,20 ,20,20,20,33 = 4c >>> why is only the 4c worth playing?

      Comment


      • #4
        Read the AMS help on REG_BINARY properly , you will see why ....

        Comment


        • #5
          Hello Eagle,
          Thanks for the tip!
          Clear advantage is the one who can read!

          Comment

          Working...
          X