write a vb script to generate hello 5 times using do until
loop

Answers were Sorted based on User's Feedback



write a vb script to generate hello 5 times using do until loop..

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

write a vb script to generate hello 5 times using do until loop..

Answer / monika

dim ivar
ivar=0
do
msgbox "hello"
ivar=ivar+1
loop until ivar=5

Is This Answer Correct ?    0 Yes 0 No

write a vb script to generate hello 5 times using do until loop..

Answer / monika

dim ivar
ivar=5
do until ivar=0
msgbox "hello"
ivar=ivar-1
loop

Is This Answer Correct ?    0 Yes 0 No

write a vb script to generate hello 5 times using do until loop..

Answer / mudaseer

dim ivar
ivar=5
do until ivar=1
msgbox "hello"
ivar=ivar-1
loop

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More VB Script Interview Questions

can anyone send me a vb scripts code for clicking on a link and coming back on home page again does the same for many links on a web page.

0 Answers   Synechron,


HI how can handle dynamic image through vb script example we have to create email id fill the edit box(these latters change wrong password) i am wating your answer

1 Answers  


What is the difference between for loop and while loop?

0 Answers  


write a qtp script to count the number of minimized windows

1 Answers  


write a vb script to display apple that is 1st a should be displayed then ap then app then appl then apple

7 Answers  






How to create a function in vbscript?

0 Answers  


Hi I don't have any idea on VBscript. can any one point me to a good web site to learn VBscript. Regards lina

2 Answers  


1. How to handle object implementation change in DP for Ex: i have login page with username,pasword (editboxes),login,cancel(buttons). Here i written DP code for login page with the help properties. My questions: 1.If properites are changing dynamically i will do (i want code for that) 2.if objects are changed dynamcally i will do (i wnat code for that)

0 Answers   iFlex,


How to use QTP Object in .vbs(vbscript file) file Ex: Browser().., wait(), exist() and etc...

0 Answers  


How many data types are supported in Vbscript?

3 Answers   Microsoft,


Mention what is select case statement?

0 Answers  


Which operator can be used to check if two numbers are equal or not in vbscript?

0 Answers  


Categories