查看: 9  |  回复: 0
  VB6 代码管家-锁定某控件或窗体
楼主
发表于 2024年12月8日 22:39
Private Declare Function EnableWindow Lib "user32" (ByVal hwnd As Long, ByVal fEnable As Long) As Long

Private Sub Command1_Click() '锁定(hwnd为指定窗口的句柄)
	EnableWindow hwnd, 0
End Sub

Private Sub Command2_Click() '解除锁定(hwnd为指定窗口的句柄)
	EnableWindow hwnd, 1
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com