How to pass the parameter from one function to another
function in VB Scripting?
Answer Posted / 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 |
Post New Answer View All Answers
How will you format a number in percetage format in vbscript?
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
I have an excel sheet with multiple ID's in a column. Now i need fetch those ID's in an application and check whether if it already exist in the DB. If not then i have to go with the process of inserting them in the DB. If it exists then i need to skip that ID and move to the next ID and check the same and proceed. How can i do that with for loop and if condition?
What is purpose of scripting.filesystemobject class in vbscript?
How do you declare a variable in vbscript?
Which loop is used in case of arrays in the vbscript language?
What is dictionary object in vbscript? Explain?
Explain some uses of vb script?
PLz send me the VB scripts which is having more examples my email id : hareen_11@yahoo.com
How to Convert Hex color code to color name in VB Script?
I want to run QTP script on Linux server is it possible to do this by connecting Windows to Linux through VPN/Terminal Server and just run the script on Linux server.
Which event is triggered when mouse focus comes out of an element in the vbscript language?
What is the extension of the vbscript file?
Hello friends..... Can any give the methods for Ms-Access, and Mozilla firefox in Automation Object Model in QTP. Please give me currect answers... if you do not understand my question please don't give answers. Thanking you.
How can the spaces from the string be removed?