write a vb script to display apple that is 1st a should be
displayed then ap then app then appl then apple
Answer Posted / prathyusha
str="apple"
For i=1 To Len(str)
var=Mid(str,i,1)
char=char&var
newchar=newchar&vbcrlf&char
Next
MsgBox newchar
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Mention what is the main difference between function and sub-procedure?
Explain about tristate constants?
There are 5 web pages.write a script to click the button on 4th web page.
Explain the support of asp for vb script functionality?
How do you declare a variable in vbscript?
can anyone send me a vb scripts code for clicking on a link and coming back on home page again does the same for many links on a web page.
Explain the arrays in vb script?
What is the difference between for loop and while loop?
What are the 2 ways to pass a value to the function?
Why is error handling required?
Which date function is used in the vbscript language to find the difference between the 2 dates?
How to pass argument by reference to a function in vbscript?
What is the purpose of regexp object in vbscript?
In html file what is an ideal position to include vbscript?
Explain about constants in vb script?