tommy916 Posted July 6, 2003 Posted July 6, 2003 I need a sample code how to add binary value in Hex into the registry. I cannnot find more info about microsoft.win32.registrykey. I've search all over the net but most are for VB 5&6. I need help ASAP. Thanks, Tommy Quote
Administrators PlausiblyDamp Posted January 25, 2004 Administrators Posted January 25, 2004 Dim rk As Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("Software\Test") Dim b() As Byte = {1, 2, 3, 4, 5, 6} rk.SetValue("A Value", b) will write out a simple byte array. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.