10-23-2008, 12:21 PM
Hi Tapan,
Put your function in a function library and associate this library to your script. Then in your script, lets assume you have two variables that you wish to be added together, variable1 and variable2. To do this just add the following line in your code -
but if you wish to check the answer -
Hope this helps,
Brian
Put your function in a function library and associate this library to your script. Then in your script, lets assume you have two variables that you wish to be added together, variable1 and variable2. To do this just add the following line in your code -
Code:
call sum (variable1,variable2)
but if you wish to check the answer -
Code:
variable3 = sum(variable1,variable2)
msgbox variable3
Hope this helps,
Brian