write a vb script to generate hello 5 times using do until
loop
Answer Posted / 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 View All Answers
Mention the rules for using option explicit statement?
when we use filter funtiom invb script(QTP)
How will you get the last occurrence of one string within another string using vbscript?
What are the 2 ways in which a variable can be declared in the vbscript language?
How are values assigned to the variables in the vbscript language?
Give me sm ideas to write Vbscripts abt protocol testing abilash700@gmail.com.
What are the naming conventions while declaring a variable in the vbscript language?
For a webbased application:- what should be code in expert veiw, for retrieving a single column name "username" from a server and checking whether exported "username" from datatable doesn't exist in server. suppose i have saved in excelsheet a username="gayatri" , which is exported, then checked for whether this username "gayatri" exist in server database or not ? if exist then allow to enter new username, which should be again checked for in loop , or else come out of loop and enter a distinct "username". plz let me have this answer in my id gayatrisahooin@hotmail.com
How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.
Explain the scope of the variables using dim, public, and private keywords respectively.
Mention what is the use of option explicit in vbscript?
How will you release the memory acquired by an array variable in vbscript?
give me any information abou vb script books learn quckly
How to Enter Values on the Command promt using VB script
I have an excel sheet with multiple ID's in a column. Now i need fetch those ID's in an application and check whether if it already exist in the DB. If not then i have to go with the process of inserting them in the DB. If it exists then i need to skip that ID and move to the next ID and check the same and proceed. How can i do that with for loop and if condition?