'RATÓN ->
Public Shared Function
SetCursorPos ( ByVal X Como
Entero , ByVal
Y Como Entero ) Como Largo
Fin Función
Public Shared Function
GetCursorPos ( ByRef lpPoint Como Point ) Como Largo
Fin Función
Public Shared Sub
mouse_event( ByVal dwFlags As Integer , ByVal dx As Integer , ByVal dy As Integer , ByVal cButtons As Integer , ByVal
dwExtraInfo As IntPtr )
End Sub
Dim URLini Como Cadena
Public Const MOUSEEVENTF_LEFTDOWN = & H2 'botón izquierdo
Public Const MOUSEEVENTF_LEFTUP = & H4 'botón izquierdo hasta
Public Const MOUSEEVENTF_MIDDLEDOWN = & H20 'botón del medio hacia abajo
Public Const MOUSEEVENTF_MIDDLEUP = & H40 'botón central hasta
Public Const MOUSEEVENTF_RIGHTDOWN = & H8 'botón de la derecha abajo
Public Const MOUSEEVENTF_RIGHTUP = & H10 'botón hasta
'<- font="" rat="">->
Private Sub ...
'Cursor 1 Posicionamos el
SetCursorPos (Me.Width - 210, 165)
'2 Pulsamos boton Derecho del Ratón
mouse_event (MOUSEEVENTF_LEFTDOWN, Me.Width - 215, 165, 0, 0)
mouse_event (MOUSEEVENTF_LEFTUP, Me.Width - 215, 165, 0, 0)
End Sub