Difference between Do while loop and while wend loop
Answer / remya
The difference between do while and while wend loop .
Do while executes if the condition is true
While wend executes atleast once irrespective of conditions.
Ex:
Do while
Dim x
x=1
Do While x<5
document.write("Welcome.")
x=x+1
Loop
While wend:
Dim x
x=7
Do
document.write("Welcome.")
x=x+1
Loop While x<5
| Is This Answer Correct ? | 7 Yes | 7 No |
Mention the environments where vbscript could be run?
How to create MSAcess table foriegn key
How will you get a subset of a array in vbscript?
write a vb script to rename a folder from tree4 to tree7
Here in my automation tool, i am retreiving some values and i need to store this values in the excel. How can i achieve this?. We are using VBA as scripting language. please let me know if you require any further inputs.
sunday is sunday monday tuesday wendesday sunday thursday friday saturday sunday sunday how to count no of sunday in the text file from vb? Answer me asap
In our application qtp unable to indentify the menu items,we tried number of times to add objetcs into object repository but fail. through normal recording mode only objects going to add into repository but while running same recording script qtp showing a error like " unable to indentify the object". in repository there is no any properties and pro values for that object and also i tried with virtual object config also unable to find the object in application and in repository. Then what i have to do to identify menu objects????? can anybody hell me pls..............
Write a program to print all lines that contains a word either “testing” or “qtp”
I have string like hp company.print tis like company hp.write a program in vbscripting
Which in-built function related to an array joins substrings into one string in the vbscript language?
what is resorceallocation
Difference between Function and Sub routine?