Registry value types.
vtNone = &H0 | 0 | No value type - REG_NONE |
vtString = &H1 | 1 | Nul terminated string - REG_SZ |
vtExpandString = &H2 | 2 | Nul terminated string (with environment variable references) - REG_EXPAND_SZ |
vtBinary = &H3 | 3 | Free form binary - REG_BINARY |
vtDWord = &H4 | 4 | 32-bit number - REG_DWORD |
vtDWordBigEndian = &H5 | 5 | 32-bit number. In big-endian format, the most significant byte of a word is the low-order byte - REG_DWORD_BIG_ENDIAN |
vtLink = &H6 | 6 | Symbolic Link (unicode) - REG_LINK |
vtMultiString = &H7 | 7 | Multiple strings - REG_MULTI_SZ |
vtResourceList = &H8 | 8 | Resource list in the resource map - REG_RESOURCE_LIST |
vtFullResourceDescriptor = &H9 | 9 | Resource list in the hardware description |
vtResourceRequirementsList = &HA | 10 |
Value.SetValue, Value.Binary, Value.Type
Server, Keys, Key, Values, Value
ValueType, ReservedKeys, LogonTypes, AccessRights
Intuitive, easy to use COM interface to windows registry. Set of classes to read/enumerate/modify windows registry keys and values from ASP, VBS and T-SQL.
Value | Meaning |
---|---|
REG_BINARY | Binary data in any form. |
REG_DWORD | A 32-bit number. |
REG_DWORD_LITTLE_ENDIAN | A 32-bit number in little-endian format. This is equivalent to REG_DWORD. In little-endian format, a multi-byte value is stored in memory from the lowest byte (the "little end") to the highest byte. For example, the value 0x12345678 is stored as (0x78 0x56 0x34 0x12) in little-endian format. Windows NT, Windows 95, and Windows 98 are designed to run on little-endian computer architectures. A user may connect to computers that have big-endian architectures, such as some UNIX systems. |
REG_DWORD_BIG_ENDIAN | A 32-bit number in big-endian format. In big-endian format, a multi-byte value is stored in memory from the highest byte (the "big end") to the lowest byte. For example, the value 0x12345678 is stored as (0x12 0x34 0x56 0x78) in big-endian format. |
REG_EXPAND_SZ | A null-terminated string that contains unexpanded references to environment variables (for example, "%PATH%"). It will be a Unicode or ANSI string depending on whether you use the Unicode or ANSI functions. To expand the environment variable references, use the ExpandEnvironmentStrings function. |
REG_LINK | A Unicode symbolic link. |
REG_MULTI_SZ | An array of null-terminated strings, terminated by two null characters. |
REG_NONE | No defined value type. |
REG_RESOURCE_LIST | A device-driver resource list. |
REG_SZ | A null-terminated string. It will be a Unicode or ANSI string depending on whether you use the Unicode or ANSI functions. Do not use the REG_SZ type to store hard-coded paths to the system root directory or to the drive containing the system files. Instead, use the REG_EXPAND_SZ type with environment variables such as "%SystemRoot%". This ensures that the path will be up-to-date even if the user remaps the system drive to a different drive letter. |
© 1996 - 2009 Antonin Foller, Motobit Software | About, Contacts | e-mail: info@pstruh.cz