write a vb script code to display the vbscript word by word (i
e 1st it should display v then b and up to t )
Answer Posted / eswar
x = InputBox("Enter a String : ")
For i=1 to len(x)
MsgBox mid(x,i,1)
Next
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which operator is used for fetching the modulus of the 2 numbers in the vbscript language?
what is the differance between BYVAL,BYREF?
what is resorceallocation
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
How will you convert a string to upper case string using vbscript?
Explain about constants in vb script?
In what way program "hello world" you can write in vbscript?
How to Convert Hex color code to color name in VB Script?
How will you release the memory acquired by an array variable in vbscript?
How strcomp function works?
What are the disadvantages of vbscript?
What are the environments supported by vbscript language?
How to find the font in qtp. Scenario:After entering the username and passwd you will be navigate into the "welcome:Username" page.Now I want to extarct font for this message.
Explain a few date functions in vbscript
Explain How do you create a recordset object in vbscript?