Function test(ByVal var)
info = "test"
msgbox var
msgbox info
End Function
info = "test1"
Call test(info) 'byval - test1, test
Function test(ByRef var)
info = "test"
msgbox var
msgbox info
End Function
info = "test1"
Call test(info) 'byref - test,test
...
info = "test"
msgbox var
msgbox info
End Function
info = "test1"
Call test(info) 'byval - test1, test
Function test(ByRef var)
info = "test"
msgbox var
msgbox info
End Function
info = "test1"
Call test(info) 'byref - test,test
...
No comments:
Post a Comment