write a vb script to display the code "vbscripting" alphabet
by alphabet(i e 1st v then b and up to g)

Answer Posted / mudaseer

vstr="vbscripting"
for i=1 to len(vstr)
msgbox mid(vstr,i,1)
next

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention what is vbscript procedures?

536


A folder is there inside no of textfiles are avilable. How do count the textfiles. Normally folder means we are using subfolder methods but textfiles is not working for subfolder methods and how do get file name also.

1502


1.I want to establish connection with excel and also want to fetch the data using SQL queries. 2.the code should be written in such a way that in future if I want to migrate from excel to MS excess database , then there should be minimal changes.

1514


what is the differance between BYVAL,BYREF?

1764


Out of the different type of operators, which are evaluated first and last in the vbscript language?

559






What are class variables?

610


Which function is used in the vbscript language to convert the specified expression into a date type value?

518


what is inner join? what is outer join? what is a constraint? tell me about rdbms? tell me about acid properties?

1430


In the Web page we have a table link, if we click on that link all the contents under that link will be sorted (asscending/Descending). Now i want to check in which order the list is ? for that i need to get the data in to some var How can i get that cells data?

2014


How to Enter Values on the Command promt using VB script

1526


How can you create a file object to work with the files in the vbscript language?

499


By default in vbscript the arguments passed to functions and subroutines are by reference or by value?

616


What is the use of option explicit statement?

581


How will you get the natural logarithm of the given number in vbscript?

599


how to write validation function for date in vb script

2140