Posts: 129
Threads: 38
Joined: May 2006
How would I use rset to create an entry with D_Word type.
For example if I go to the registry editor, right click and go to Modify, hexadecimal value is 9dd and Decimal value is 2525.
I tried the following and it didn't work :oops:
byte x=2525
rset x "SMTP Port" "Software\Microsoft\Internet Account Manager\Accounts\00000001" 0 REG_DWORD
Posts: 12,073
Threads: 140
Joined: Dec 2002
Posts: 129
Threads: 38
Joined: May 2006
Posts: 160
Threads: 43
Joined: Sep 2007
iv read all i can find about this but it doesnt seem to be working im trying to create a new DWORD with the value of 1 called test then i also want to be able to delete it or change it back to 0
Function
Function11
int x=1
rset x "SMTP Port" "HKEY_CURRENT_USER\Software\frhed\v1.1.0\0\Test\00000001" 0 REG_DWORD
Posts: 12,073
Threads: 140
Joined: Dec 2002
HKEY_CURRENT_USER must not be used in key. It is hive.
Posts: 160
Threads: 43
Joined: Sep 2007
ok it works without it thx realy helped