@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Create or open a registry key !!!!C# Signature: [DllImport("advapi32.dll", SetLastError=true)] static extern int RegCreateKeyEx( int hKey, string lpSubKey, int Reserved, string lpClass, RegOption dwOptions, RegSAM samDesired, ref SECURITY_ATTRIBUTES lpSecurityAttributes, out int phkResult, out RegResult lpdwDisposition); !!!!VB Signature: <DllImport("advapi32.dll", SetLastError:=True)> _ Public Function RegCreateKeyEx( _ ByVal hKey As Integer, _ ByVal lpSubKey As String, _ ByVal Reserved As Integer, _ ByVal lpClass As String, _ ByVal dwOptions As RegOption, _ ByVal samDesired As RegSAM, _ ByRef lpSecurityAttributes As SECURITY_ATTRIBUTES, _ ByRef phkResult As Integer, _ ByRef lpdwDisposition As RegResult) As Integer NOT EXECUTABLE!!! PLEASE USE "Microsoft.Win32.Registry" and "Microsoft.Win32.RegistryKey" !!!!User-Defined Types: [Flags] public enum RegOption { NonVolatile = 0x0, Volatile = 0x1, CreateLink = 0x2, BackupRestore = 0x4, OpenLink = 0x8 } [Flags] public enum RegSAM { QueryValue = 0x0001, SetValue = 0x0002, CreateSubKey = 0x0004, EnumerateSubKeys = 0x0008, Notify = 0x0010, CreateLink = 0x0020, WOW64_32Key = 0x0200, WOW64_64Key = 0x0100, WOW64_Res = 0x0300, Read = 0x00020019, Write = 0x00020006, Execute = 0x00020019, AllAccess = 0x000f003f } public enum RegResult { CreatedNewKey = 0x00000001, OpenedExistingKey = 0x00000002 } !!!!Alternative Managed API: Microsoft.Win32.RegistryKey.CreateSubKey !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: RegCreateKeyEx@msdn on MSDN
Edit advapi32.RegCreat...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.