How to pass the parameter from one function to another
function in VB Scripting?
Answer / vaishnavi murugan
dim a
a=10
b=20
call value(a,b)
function value(a,b)
c = a+b
msgbox c
call val1(c)
end function
function val1(c)
d = c+2
msgbox d
end function
| Is This Answer Correct ? | 4 Yes | 0 No |
How to write functions and sub in vb script?
Which operator can be used to change the value of the operand or change the state of the condition?
Could Anybody tell me the VBscript for REVERSE an Integer int reverse(int num) Ex:246 to 642
what is the standards used for writing the script in QTP
What is the event handling in vbscript?
What are class variables?
What is the purpose of the err object in the vbscript language?
What is vbscript?
what is the differenece btwn scripting language and programming language
What are the different types of loops available in the vbscript language?
How will you get a subset of a array in vbscript?
Why is error handling required?