So much for MSKB. I’m trying to change a registry setting through VBA by using VBScript. I’ve been successful using string values, but now I’m having a problem trying to set a binary value. (The value corresponds to a checkbox in Adobe’s PDFMaker Conversion Settings.)
The line of code I’m using to turn the checkbox off is:
VBSShell.RegWrite “HKCUSoftwareAdobeAcrobatPDFMaker5.0OutputOptionsCreateStructureWD9”, 0, “REG_BINARY”
The problem is that when I run the code, the actual registry entry (shown below) is not what I’m expecting, and it has no effect on the checkbox in question, i.e. the checkbox is still selected. The correct value should just be “00” not “00 00”
What’s up with that?