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 |
Mention what if you do not specify anything when you call a procedure?
if u ve resrevation for train and u get a number supose 1234xxxokie.after sucessul entering all required fields. now u put that number in search and want to chk wether these ar same or not if both ar same then its okie otherwise test fail.what would be the vb script code for it to compare these two values of different page.
Give examples where vb script can directly run on users system with windows as os?
hey please tell me how to retriev data from excel sheet which puts the login name and password in the application? plz send me the code..please help me
Mention what is byref and byval parameters in vbscript?
What is the use of option explicit statement?
How to search word in a string without using instring function?
In qtp, how to use XML files for framework. if the XML files are more Efficient than Excel files?
best training centre in bangalore
Hi All, I am facing one problem in QTP. There is link object in my application that exist in the Frame in mozilla firefox. Click event on that object is not working but once the frame is enabled/activated then click event works fine.But the frame does not have the activate property. This problem is coming in firefox only. Regards
How to make sure that items in a wintree are sorted al?
What is wrong with the following code: <%afname="header.asp"%><!?#include file ="<%=afname%>"?>