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 |
write a vb script code to display the vbscript word by word (i e 1st it should display v then b and up to t )
write a qtp script to count the number of minimized windows
in qtp we ve datatable look like excel ,if we want to extract data from excel which saved in my documet how can i get that in datatable using vb script
What is the differene between QTP 8.2 and QTP 9.0 and QTP 9.1,Pls give me answer ASAP.
How can I get the value of an object property or variable in another frame?
Can anyone help me in write coding to get this pattern * ** *** ****
write a program to display configuration of a local system with the help of vb script.
What is variant in vb script?
Mention what is select case statement?
Which date function is used in the vbscript language to find the difference between the 2 dates?
Explain about the functionality of vb script?
What is the use of the formatdatetime function in the vbscript language?