Aug 5, 2005 #1 Tdrgabi Programmer Jun 24, 2004 43 RO hi is there a way to create any other kind of value for a subkey (in win registers) other than string ...from c# i was trying with registrykey.setvalue("subkey" (byte)value) but it makes an string value. i need to write hex data into a binary value ....
hi is there a way to create any other kind of value for a subkey (in win registers) other than string ...from c# i was trying with registrykey.setvalue("subkey" (byte)value) but it makes an string value. i need to write hex data into a binary value ....
Aug 5, 2005 #2 chiph Programmer Jun 9, 1999 9,878 US You should be able to do this, as the docs say you can store binary values using Microsoft.Win32.RegistryKey.SetValue(). Try casting it to an array of byte instead of a single byte. Chip H. ____________________________________________________________________ If you want to get the best response to a question, please read FAQ222-2244 first Upvote 0 Downvote
You should be able to do this, as the docs say you can store binary values using Microsoft.Win32.RegistryKey.SetValue(). Try casting it to an array of byte instead of a single byte. Chip H. ____________________________________________________________________ If you want to get the best response to a question, please read FAQ222-2244 first