04-15-2008, 07:00 PM
use call statement...
There are two ways one can call procedures
1) By using Call statement.
if you use call statement, then Call some_function_name(param)
2) Without Call statement
some_function_name param
Code:
standardGST = Call Get_GST(theTotal).
There are two ways one can call procedures
1) By using Call statement.
if you use call statement, then Call some_function_name(param)
2) Without Call statement
some_function_name param