Dehabilitar botón derecho del ratón en VB 6.0
Hola, que tal... Quisiera saber si existe otra forma para deshabilitar las opciones del botón derecho sobre un textbox, utilizo el siguiente código pero no me funciona...
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If (Button = 2) Then
Button = 0
End If
End Sub
Gracias de antemano...
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If (Button = 2) Then
Button = 0
End If
End Sub
Gracias de antemano...
1 respuesta
Respuesta de carloscharly