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


Please Help Members By Posting Answers For Below Questions

What is the difference between a dictionary and an array?

575


Which data type/types are supported by vbscript language and what are their specialties?

592


Explain different types of segment?

565


What is the use of the instr function?

579


Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?

794






How to open a file. What is the perpose of true and false mode there?

606


Mention what is the use of option explicit in vbscript?

544


What is the purpose of drive object of scripting.filesystemobject class in vbscript?

601


if u ve resrevation for train and u get a number supose 1234xxxokie.after sucessul entering all required fields. now u put that number in search and want to chk wether these ar same or not if both ar same then its okie otherwise test fail.what would be the vb script code for it to compare these two values of different page.

1441


Mention the rules for using option explicit statement?

480


Explain about vb script?

745


What are class variables?

612


I have an excel sheet with multiple ID's in a column. Now i need fetch those ID's in an application and check whether if it already exist in the DB. If not then i have to go with the process of inserting them in the DB. If it exists then i need to skip that ID and move to the next ID and check the same and proceed. How can i do that with for loop and if condition?

862


In html file what is an ideal position to include vbscript?

806


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.

1833