首页 /编程语言和算法/VB6/ASP
 VB6 判断某控件是否有焦点,子程序 s_IsFocus()
2024年10月16日 17:11

新建From1(窗体),新建Command1-2(按钮CommandButton),代码:

Private Sub Command1_Click()
    Call s_IsFocus
End Sub

Private Sub Command2_Click()
    Call s_IsFocus
End Sub

Private Sub s_IsFocus()
    If Form1.ActiveControl Is Command2 Then  'Command2是被判断的控件
        MsgBox "有焦点"
    Else
        MsgBox "无焦点"
    End If
End Sub

当然也可以用timer控件不断检查。

 
全部回复(0)
首页 | 电脑版 |