when you use For Loop, While..do, do..while? at what
situations which loop will use.
Answer / satyanj
"For" loop can be used when the range of the iteration is
known. For ex: For i = 1 to 100....
"While..do" or "do..While" can be used when, the scenario
should satisfy the condition.
For Ex: While (<Condition>)...
| Is This Answer Correct ? | 1 Yes | 0 No |
how to add the shared repository file to the script file while running the script manuall
What are the valid scopes of a variable in vbscript?
Can anyone help me in write coding to get this pattern * ** *** ****
Explain about operator precedence in vb script?
What is the use of the ‘open’ method to work with the database in the vbscript language and what connection string is passed in the same and what is its usage?
How regexp.execute method works?
What are the uses of vb script?
write a vb script to find simple interest using functions
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.
Which function is used in the vbscript language to convert the specified expression into a date type value?
Which command is used for writing text on a page?
what is diff b/n these 2 programs 1) for i=5 to 1 step 2 msgbox "pass" next 2_) for i=5 to 1 step -2 msgbox "pass" next