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 |
What is the use of the formatdatetime function in the vbscript language?
How to assign a date value to a variable?
How can you destroy an object in vbscript?
How can you have different number of cells for each row of a table in HTML?
Explain some uses of vb script?
How can the spaces from the string be removed?
Consider there are objects in a webapp which are identified by QTP. Suppose you know only the logical name of a object(absolutely nothing else about it). Which approach will you take to find the "micClass" of the object(You can't use Object Spy, or can't add the object in repository)?
Mention how to assign a date value to a variable?
Explain the adodb.stream class?
how to operate webobjects in a webpage using getobject function and then using generic methods?
How are comments handled in the vbscript language?
Explain about the support of asp for vb script functionality?