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 |
What are the differences between Visual Basic, VBA and VBScript? When would it be appropriate to use one as opposed to another?
How to find a latest file from any folder
write a vb script to display the size of the folder,date created and name of the folder
How to create MSAcess table foriegn key
Which event is triggered when mouse focus comes out of an element in the vbscript language?
What is variant in vb script?
give me an ex. of unoverloaded method?
What is the equivalent of VBScript?s On Error In Jscript ?
How to write Descriptive programming in .VBS file i wrote this code but it is giving error.. Dim qtApp set qtApp=createobject("QuickTest.Application") qtApp.Launch qtApp.Visible=True Set objIE = CreateObject("InternetExplorer.Application") objIE.visible = True objIE.Navigate "www.gmail.com" browser("title:=gmail").title("title:=gmail")
How do you declare a variable in vbscript?
How will you convert a given number to long in vbscript?
What are the different types of operators and their order of precedence?