以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  函数中变量的调用  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=175517)

--  作者:朱女士
--  发布时间:2022/3/8 10:26:00
--  函数中变量的调用
老师您好!
     主程序向函数中传递变量我学会了,函数中的变量怎么再传递到主程序中呢?换句话就是主程序怎么调用函数中的数据? 谢谢!

--  作者:有点蓝
--  发布时间:2022/3/8 10:49:00
--  
通过return返回

比如函数
dim a as string = args(0)
a = a & "abc"
return a

调用函数
dim res as string = Functions.Execute("xx函数",“123”)
msgbox(res)