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 |
how do you make the variable declaration mandatory?what is the use of "option explicit"?
write a vb script to generate the following pattern ***** **** *** ** *
Which constant is used for print and display functions and works as same as pressing enter key?
Compare java script and vb script?
What purpose does ‘on error resume next’ serves?
how to answer "TELL ME ABOUT UR SELF" as exp.person. whr to start and whr to stop. can anyone tel me
Is VB Script Case sensitive or Case insensitive?
Explain what is loose binding? Why is it not a good practice to use it?
Which operator can be used to check if two numbers are equal or not in vbscript?
Can anyone send me a vb script function for verifying the functionality of active links on a web page
If anyone knows abt Test Complete material, Pls let me Know. if u have any material or any documents..... Pls mail me on this mail Id...... This is very Urgent Requirment..... for my Project.....
what does create object actually do when you call it in vbscript?