write a vb script to generate hello 5 times using do until
loop
Answers were Sorted based on User's Feedback
Answer / abhishek mallabadi
dim ivar
ivar=0
do until ivar=5
msgbox "hello"
ivar=ivar+1
loop
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / monika
dim ivar
ivar=0
do
msgbox "hello"
ivar=ivar+1
loop until ivar=5
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / monika
dim ivar
ivar=5
do until ivar=0
msgbox "hello"
ivar=ivar-1
loop
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mudaseer
dim ivar
ivar=5
do until ivar=1
msgbox "hello"
ivar=ivar-1
loop
| Is This Answer Correct ? | 0 Yes | 4 No |
My Salary is 65000. How Much TDS I have to pay
There are 5 web pages.write a script to click the button on 4th web page.
who you define variables and functions in VB?
What is the difference between for loop and while loop?
how to write codings in QTP using vb script. please help me. i am new to QTP. it is easy or very much tough. please tell me
How to declare an array in vbscript?
Hi, Anybody could tell me What is the script for Reverse of Given number. Ex:236--632. Thanks in Advance..
How to write functions and sub in vb script?
write a vb script to generate the following pattern ***** **** *** ** *
i have to open a notepad having no. of words in dat file by recording in qtp and then find a particular word and display true or false
How can constants be declared in the vbscript language?
write a function to read the items from combobox of Flight reservation & save in excel (QTP)??