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 will you get the smallest subscript of an array in vbscript?
Write a function for Instr(). We need to write a function that works as same as Instr(). Code or Even pseudo code is good enough for me.?
Is VB Script Case sensitive or Case insensitive?
write a vb script to display the code "vbscripting" alphabet by alphabet(i e 1st v then b and up to g)
What is difference between Active screen and movie screen recorder in QTP 9.2?
Why to use option explicit in vb script?
Hi Friends my Question is very simple,in Manual testing when we click on a hyper link it directs us to the relavent page or it re-directs us to the current page,so there we can easily write testcase but same thing if we do in automation script using QTP & need to generate report using Reporter.report event how we will do it?thanks in advance...
if there is any string in a given format like as "company name employeecode date" then we have to fetch employeecode form string for ex-string is "capgemini12345june2013" then we have to fetch 12345 by using vb script so guys how can we do that please reply it.
How to delete a cookie using vbscript?
How to assign a numeric value to a variable?
Is vbscript language a case-sensitive language and what does it mean?
How to generate 3 digit random number?