Records 1 to 15 of 15
Browse Category
» Application
» Arc » AVI » Bitmap » Brush » Caret » Character » Clipboard » Color » Compress » Console » Cryptographic » Currency » Cursor » Date/Time » DDE » Device » Display » DLL » Drives » Ellipse » File » Font » FTP » HotKey » Icon » ImageList » Inet » INI-Files » Internet » Joystick » Keyboard » Memory » Menu » MIDI » Network » Objects » Pen » Picture » Polygon » Ports » Printer » Process » Rectangle » Registry » ScrollBar » Sound » Strings » System » Tape » Text » Timer » Triangle » Wait » Window |
15 Registry API Function
Sort: Most Viewed | Highest Rated | A-Z | Z-A
RegSaveKeyThe RegSaveKey function saves the specified key and all of its subkeys and values to a new file....Hits: 3742 Rating: (2.85) votes 813
RegRestoreKeyThe RegRestoreKey function reads the registry information in a specified file and copies it over the specified key. This registry information may be in the form of a key and multiple levels of subkeys....Hits: 1919 Rating: (3.20) votes 340
RegOpenKeyThe RegOpenKey function opens the specified key. This function is provided for compatibility with Windows version 3.1. Win32-based applications should use the RegOpenKeyEx function....Hits: 3600 Rating: (2.83) votes 383
RegNotifyChangeKeyValueThe RegNotifyChangeKeyValue function notifies the caller about changes to the attributes or contents of a specified registry key. Note that the function does not notify the caller if the specified key is deleted....Hits: 2282 Rating: (2.91) votes 399
RegEnumValueThe RegEnumValue function enumerates the values for the specified open registry key. The function copies one indexed value name and data block for the key each time it is called....Hits: 2865 Rating: (3.06) votes 344
RegEnumKeyExThe RegEnumKeyEx function enumerates subkeys of the specified open registry key. The function retrieves information about one subkey each time it is called....Hits: 3609 Rating: (2.84) votes 846
RegDeleteValueThe RegDeleteValue function removes a named value from the specified registry key....Hits: 2065 Rating: (3.20) votes 336
RegDeleteKeyWindows 95: The RegDeleteKey function deletes a key and all its descendents. Windows NT: The RegDeleteKey function deletes the specified key. This function cannot delete a key that has subkeys....Hits: 2681 Rating: (2.86) votes 690
RegCreateKeyThe RegCreateKey function creates the specified key. If the key already exists in the registry, the function opens it. This function is provided for compatibility with Windows version 3.1. Win32-based applications should use the RegCreateKeyEx function....Hits: 2962 Rating: (3.08) votes 355
RegSetValueExRegSetValueEx writes a value to a registry key. If the value does not already exist, it will be created. The value can be of a number of different data types. In Visual Basic, if some sort of string value is written to the registry, the string must explicitly be passed ByVal. The function returns ze...Hits: 3324 Rating: (2.64) votes 229
RegQueryValueExRegQueryValueEx reads a value from a registry key. It can read many different types of data, including integer types and strings. In Visual Basic, when reading a type of string from the registry, you must pass the string variable explicitly ByVal. The function returns 0 if successful, or a non-zero ...Hits: 3694 Rating: (3.04) votes 214
RegOpenKeyExRegOpenKeyEx opens a key in the Windows registry. The handle it gives must be used when you read to or write from any values under that key. Unlike RegCreateKeyEx, this function will not create the key if it does not exist. The function puts a handle to the opened key into the variable passed as phk...Hits: 3049 Rating: (3.08) votes 206
RegCreateKeyExRegCreateKeyEx creates a new registry key. If the key you want to create already exists, the existing key will be opened (as if RegOpenKeyEx had been used). The handle to the reated/opened key is put into the variable passed as phkResult. The function returns 0 if successful, or a non-zero error cod...Hits: 2662 Rating: (2.90) votes 278
RegCloseKeyRegCloseKey closes a registry key. This should be done after you finish reading to or writing to the registry. Closing the registry key frees up some resources. Obviously, you can no longer use the key after closing it. The function returns 0 if successful, or a non-zero error code if an error occur...Hits: 1409 Rating: (2.92) votes 204
Records 1 to 15 of 15
|