| 9/14/2006
ManipulateRegistryVisualBasicRegistryProxy.zip
The RegistryProxy class, new in .NET
2.0, is a proxy class that can increase productivity when a
developer is creating code to programmatically manipulate the
registry. The RegistryProxy class provides properties and methods
for manipulating the registry.
The proxy pattern is used by the
Visual Basic My feature to increase developer productivity. A proxy
class is an extremely thin class that forwards all calls it receives
to an underlying object. By convention, proxy classes are always
suffixed with Proxy. The Visual Basic My feature utilizes proxies
when accessing the clipboard, file system, and registry to expose
shared methods that otherwise wouldn't be visible in IntelliSense.
Some uses for the RegistryProxy class
are to create registry sub keys, set registry key values, get
registry key values, and to delete registry sub keys.
Click the link above to download Visual Basic source code in a Visual Studio 2005 solution which demonstrates how to use the
RegistryProxy class to manipulate the registry.
Get Dot Net Code is a web site full of free and pay for use Visual Basic source code for Visual Basic programmers.
|