write a vb script to generate hello 5 times using do until
loop
Answer Posted / abhishek mallabadi
dim ivar
ivar=0
do until ivar=5
msgbox "hello"
ivar=ivar+1
loop
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain the adodb.stream class?
When does ‘on click of button’ event gets triggered in the vbscript language?
What is the use of option explicit in vbscript?
How will you reverse a string in vbscript?
Explain the tristate constants in vbscript?
In what way program "hello world" you can write in vbscript?
How are values assigned to the variables in the vbscript language?
i have a problem with this error(this error related edit and
delete button,when i click this button in datagrid..i will
get this error)"Invalid postback or callback argument.
Event validation is enabled using
hi all, i had a question, that how to find out hiding a coloumn in a table i had a table having the following column names NAME DESCRIPTION CREATED TIME CREATED USER if i right clicked on a NAME column it will displays a menu having the same column names in a list like NAME DESCRIPTION CREATED TIME CREATED USER with check boxes.if i unched any check box, that column name should not be appear in the main table column names could anyone please solve this problem?
Mention what are the rules to name variable in vbscript?
Dear All, I am geting below IE error whilie executing the QTP scripts in Batch mode "Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience." can any one suggest me how to resolve this issue . Thanks Balaji
Write a Program to add 2 numbers without using operators (+,-) and without using third variable. Note: Use VBScript only Hint: You can use other operators like '/' & '*'(Division & Multiplication)
How to declare an array in vbscript?
What is the difference between do until loop and do while loop?
Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..