以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  额,老师,如何判断控件是否存在。  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=111485)

--  作者:rxfmrqq
--  发布时间:2017/12/22 17:10:00
--  额,老师,如何判断控件是否存在。

For Each dr As Row In Tables("供货企业目录")
    For i = 1 To 100
        If e.Form.Controls(but"& i &") Is Nothing Then
            MessageBox.show(1)
            Exit For
            Exit For
        End If
    Next
Next

 

老师,这个忘记了, 找不到。  判断控件是否存在。


--  作者:有点甜
--  发布时间:2017/12/22 17:26:00
--  

If e.form.controls.Contains("abc") = False Then \'不存在

 

End If