我们可使用两种程序:子程序和函数程序。
Sub mysub() some statements End Sub
Sub mysub(argument1,argument2) some statements End Sub
Function myfunction() some statements myfunction=some value End Function
Function myfunction(argument1,argument2) some statements myfunction=some value End Function
可以这样调用某个函数:
name = findname()
此函数名为 "findname",函数会返回一个值,这个值会存储于变量 "name" 中。
或者可以这样做:
msgbox "Your name is " & findname()
我们通过调用了名为 "findname" 的函数,这个函数返回的值会显示在消息框中。
可以这样调用子程序:
Call MyProc(argument)
或者,也可以省略 Call 语句:
MyProc argument