18/07/2011, 15:57
|
| | | Fecha de Ingreso: junio-2011 Ubicación: Guatemala
Mensajes: 273
Antigüedad: 13 años, 4 meses Puntos: 33 | |
Respuesta: Que al Abrir una solución de VS ".SLN", se ejecute el VS desde" Program~2" Pues velo tu mismo mi chavo...
Accessing the Registry with the .NET Framework
Because you can use the GetSetting and SaveSetting functions to access keys only under HKEY_CURRENT_USER\Software\VB and VBA Program Settings, you may find them limiting. When that happens, you can use the Registry and RegistryKey classes in the Microsoft.Win32 namespace of the .NET Framework. For more information, see Registry and RegistryKey
Security Note It is more secure to write data to the current user (Microsoft.Win32.Registry.CurrentUser) than to the local computer (Microsoft.Win32.Registry.LocalMachine). A condition, that's typically referred to as "squatting," occurs when the key you are creating was previously created by another, possibly malicious, process. To prevent this from occurring, use the RegistryKey.GetValue method. It returns Nothing if the key does not already exist.
http://msdn.microsoft.com/en-us/library/aa289494%28v=vs.71%29.aspx
Tambien existen otros metodos de acceso como lo dice el texto anterior, checalos... |