SetDWORDValue
Previous  Next

Sets the value of the specified key value.
Syntax: SetDWORDValue (SubKey As String, ValueName As String, Value As Int32)
If the ValueName does not exist a new value will be created.

Example:
Sub App_Start
      reg.New1
      reg.RootKey(reg.rtCurrentUser)
      reg.SetDWordValue("Software\My Application","DWORD Value", 33)
End Sub