PDA

View Full Version : Registry Value (Hex vs Decimal)



NewsArchive
02-16-2016, 02:09 AM
I need to add a Registry Key with a value of a specific numeric value. In
Windows RegEdit, you can enter such a value as either decimal or hex format.
I don't see anything in the SB manual that specifies what format is required
in the SB registry value field.

For example, I need to set the value as 11000 decimal or 2AF8 hex.

What's the expected format?
Mike Springer

NewsArchive
02-16-2016, 02:09 AM
Mike,

> I need to add a Registry Key with a value of a specific numeric value. In
> Windows RegEdit, you can enter such a value as either decimal or hex format.
> I don't see anything in the SB manual that specifies what format is required
> in the SB registry value field.
>
> For example, I need to set the value as 11000 decimal or 2AF8 hex.

Select the data type, DWORD most likely, and enter the value as 11000.

The decimal/hex options are just for viewing within regedit.

--
Lee White

RPM Report Viewer.: http://www.cwaddons.com/products/rpm/
RPM Review........: http://www.clarionmag.com/cmag/v11/v11n06rpm.html
Report Faxing.....: http://www.cwaddons.com/products/afe/
---Enroll Today---: http://CWaddons.com

Creative Reporting: http://www.CreativeReporting.com

Product Release & Update Notices
http://twitter.com/DeveloperPLUS

Windows 8 brings us "The Oval, Bumper Car, Roller Coaster of Wait!"
And, now, Windows 10 brings us "The Inch Worm, Bumper Car of Wait!"

NewsArchive
02-16-2016, 05:45 AM
Mike,

> I need to add a Registry Key with a value of a specific numeric value.
> In Windows RegEdit, you can enter such a value as either decimal or hex
> format. I don't see anything in the SB manual that specifies what format
> is required in the SB registry value field.
>
> For example, I need to set the value as 11000 decimal or 2AF8 hex.
>
> What's the expected format?

What Lee said. This is a REG_DWORD set to 11000.

Friedrich

NewsArchive
02-16-2016, 05:46 AM
Thanks!
Mike