VB中如何禁止鼠标右键复制信息到Text文本框中
发布网友
发布时间:2023-10-02 06:54
我来回答
共4个回答
热心网友
时间:2024-12-03 02:52
直接加入以下代码,点右键的时候清空剪贴板吧
Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then Clipboard.clear
End Sub
热心网友
时间:2024-12-03 02:52
很简单哦,请参考
Private Sub txt_MouseDown(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
txt(Index).Enabled = False
MsgBox "ok"
txt(Index).Enabled = True
txt(Index).SetFocus
End If
End Sub
热心网友
时间:2024-12-03 02:53
HOOK 鼠标右键消息吧 最直接
热心网友
时间:2024-12-03 02:54
判断用户是否在文本框里按右键,如果按则msgbox不就行了