以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  如何判断函数是否存在  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=80247)

--  作者:santde
--  发布时间:2016/1/19 13:05:00
--  如何判断函数是否存在
如何判断函数是否存在
--  作者:大红袍
--  发布时间:2016/1/19 14:28:00
--  
try
    Functions.add("test", "")
    msgbox("没有")
    Functions.remove("test")
catch ex As exception
    msgbox(ex.message)
End try