Is there anyway to change a registry entry through visual basic.net code? I know the registry entry's name I just want to modify its data/source (I have a string registry). I may sound confusing right now so if I am please tell me. I will clarify.
Printable View
Is there anyway to change a registry entry through visual basic.net code? I know the registry entry's name I just want to modify its data/source (I have a string registry). I may sound confusing right now so if I am please tell me. I will clarify.
You use the Microsoft.Win32.Registry and .RegistryKey classes to access the registry in .NET apps. In VB 2005 you can also use the My.Computer.Registry object, but that's little more than an alias for Microsoft.Win32.Registry class anyway.
Thanks.