以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  内部函数参数个数问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=188099)

--  作者:ljh29206
--  发布时间:2023/9/1 11:07:00
--  内部函数参数个数问题
内部函数“aaa”
dim s as string

If Args(0) IsNot Nothing Then
s = Args(0)
msgbox (s)
Else

msgbox ("没有参数")
End If

Functions.Execute("aaa") 
提示数组超出索引

请问是我的写法错了吗


--  作者:有点蓝
--  发布时间:2023/9/1 11:09:00
--  
dim s as string

If Args.count > 0 Then
s = Args(0)