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: 6197 Rating: (2.82) votes 917
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: 3521 Rating: (3.26) votes 455
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: 9197 Rating: (2.55) votes 598
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: 4549 Rating: (3.23) votes 623
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: 6507 Rating: (2.98) votes 462
RegEnumKeyExThe RegEnumKeyEx function enumerates subkeys of the specified open registry key. The function retrieves information about one subkey each time it is called....Hits: 8192 Rating: (2.52) votes 1454
RegDeleteValueThe RegDeleteValue function removes a named value from the specified registry key....Hits: 4970 Rating: (3.35) votes 451
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: 7056 Rating: (2.93) votes 1355
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: 7135 Rating: (3.26) votes 546
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: 9191 Rating: (2.22) votes 593
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: 11238 Rating: (2.55) votes 622
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: 11381 Rating: (3.99) votes 1558
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: 8069 Rating: (2.80) votes 404
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: 4385 Rating: (2.78) votes 1914
Records 1 to 15 of 15
|