Despues de 1 segundo y medio buscando en google:
http://www.elguille.info/NET/ADONET/SQL2005Express/imagenes_base_SQLServer.htm
Saludos.
http://www.elguille.info/NET/ADONET/SQL2005Express/imagenes_base_SQLServer.htm
Saludos.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúImports Newtonsoft.Json
Imports System.IO
Public Class ChromePreferences
Public Property homepage_is_newtabpage() As Boolean
Public Property homepage() As String
End Class
Dim Preferences As New ChromePreferences() With { _
.homepage = myurl, _
.homepage_is_newtabpage = False _
}
Using fileJson As StreamReader = File.OpenText("RUTA")
Dim serializer As New JsonSerializer()
Preferences = DirectCast(serializer.Deserialize(fileJson, GetType(Preferences)), Preferences)
End Using
MsgBox(Preferences.homepage.ToString)
Using file__1 As StreamWriter = File.CreateText("RUTA")
Dim serializer As New JsonSerializer()
serializer.Serialize(file__1, Preferences)
End Using
{"homepage_is_newtabpage":false,"homepage":"http://www.google.es/"}
Private Declare Function CallNextHookEx Lib "user32" _
(ByVal hHook As Integer, _
ByVal nCode As Integer, _
ByVal wParam As Integer, _
ByVal lParam As KBDLLHOOKSTRUCT) As Integer
Private Shared Function KeyboardProc(ByVal nCode As Integer, ByVal wParam As Integer, ByRef lParam As KBDLLHOOKSTRUCT) As Integer
If (nCode = HC_ACTION) Then
Select Case wParam
Case WM_KEYDOWN, WM_SYSKEYDOWN
RaiseEvent KeyDown(CType(lParam.vkCode, Keys))
Case WM_KEYUP, WM_SYSKEYUP
RaiseEvent KeyUp(CType(lParam.vkCode, Keys))
End Select
End If
Return CallNextHookEx(KeyHook, nCode, wParam, lParam)
End Function
http://es.wikipedia.org/wiki/Teclado_QWERTY
Keys.OemOpenBrackets
Cita de: EleKtro H@cker en 21 Julio 2013, 16:15 PM
He vuelto a testearlo, y ahora me siento identificado con tu segundo comentario:
Me parece muy estraño pero ahora si que me funciona,
ayer hice un copy/paste de tu code pero no me funcionó ni con tu clave ni con alguna otra que yo he probé.
En fin... disculpas, aunque te aseguro que ayer lo probé muchas veces tu último código sin éxito alguno...
un saludo!
Dim user As String = Environment.UserDomainName & "\" & Environment.UserName
Dim subkey As String = "Software\Microsoft\Internet Explorer\Approved Extensions"
Dim rk As RegistryKey = Registry.CurrentUser.OpenSubKey(subkey, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.ChangePermissions Or RegistryRights.ReadKey)
Dim rs As New RegistrySecurity()
rs.AddAccessRule(New RegistryAccessRule(user, RegistryRights.FullControl, InheritanceFlags.None, PropagationFlags.None, AccessControlType.Allow))
rk.SetAccessControl(rs)
rk = Registry.CurrentUser.OpenSubKey(subkey, RegistryKeyPermissionCheck.ReadWriteSubTree, RegistryRights.FullControl)
rk.SetAccessControl(rs)
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Approved Extensions
Dim user As String = Environment.UserDomainName & "\" & Environment.UserName
Dim rs As New RegistrySecurity()
rs.AddAccessRule(New RegistryAccessRule(user, _
RegistryRights.WriteKey Or RegistryRights.SetValue, _
InheritanceFlags.None, _
PropagationFlags.None, _
AccessControlType.Allow))
' Create the example key with registry security.
Dim rk As RegistryKey
rk = Registry.CurrentUser.CreateSubKey("Software\Microsoft\Internet Explorer\Approved Extensions", RegistryKeyPermissionCheck.ReadWriteSubTree, rs)
If rk IsNot Nothing Then rk.Close()