Private Function f(ByVal x As Integer) '定义函数f(x) f = x + 5 '设置函数返回值End FunctionPrivate Sub Command1_Click() MsgBox (f(6)) '调用函数End Sub
Dim f(10)For x = 0 To 9f(x) = x + 5Text1.Text = Text1.Text & f(x) & "|"Next x