
03/03/2006, 15:02
|
| | Fecha de Ingreso: abril-2005
Mensajes: 483
Antigüedad: 20 años, 1 mes Puntos: 3 | |
Gracias f visualbasic por la respuesta. Encontré cómo hacerlo con un TextBox
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, x As Single, Y As Single)
If Button = 2 Then
Text1.Enabled = False
PopupMenu MiMenu
Text1.Enabled = True
Text1.SetFocus
End If
End Sub
Saludos |