微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

vb移动窗体的代码

Option Explicit

Private Declare Function ReleaseCapture Lib "user32" () As Long
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long,ByVal wMsg As Long,ByVal wParam As Long,lParam As Long) As Long
Const HTCAPTION = 2
Const WM_NCLBUTTONDOWN = &HA1

Private Sub Form_MouseDown(Button As Integer,Shift As Integer,x As Single,Y As Single)
If Button = 1 Then ' Checking for Left Button only
Dim ReturnVal As Long
x = ReleaseCapture()
ReturnVal = SendMessage(hwnd,WM_NCLBUTTONDOWN,HTCAPTION,0)
End If
End Sub

Private Sub Form_MouseDown(Button As Integer,X As Single,Y As Single) If Button And vbLeftButton Then mX = X: mY = Y End IfEnd Sub Private Sub Form_MouseMove(Button As Integer,Y As Single) If Button And vbLeftButton Then Me.Move Me.Left - mX + X,Me.Top - mY + Y End IfEnd Sub

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐