首页 /编程语言和算法/VB6/ASP
 VB6 禁用窗体上所有控件
2023年4月19日 16:36

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

Private Sub Command1_Click()
    Dim i As Integer
    For i = 0 To Form1.Controls.count - 1
        Form1.Controls(i).Enabled = False
    Next i

End Sub


Private Sub Command1_Click()
    Dim ctrTemp As Control
    For Each ctrTemp In Me.Controls
        ctrTemp.Enabled = False
    Next
End Sub


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