write a vb script to display the reverse of vbs

Answers were Sorted based on User's Feedback



write a vb script to display the reverse of vbs..

Answer / mudaseer

msgbox strreverse("vbs")

Is This Answer Correct ?    4 Yes 0 No

write a vb script to display the reverse of vbs..

Answer / mudaseer

Option Explicit

Dim MyStr, char, NewStr, x, y

MyStr = "vbs"

y = Len(MyStr)
For x = y To 1 Step -1
char = Mid(MyStr,x,1)
NewStr = NewStr & char
Next

msgbox newstr

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More VB Script Interview Questions

The function template cocept is implemented in vb.net is ???

0 Answers  


What is the purpose of on error resume next statement?

0 Answers  


How to create pull down menu box using vb script

0 Answers  


What are the properties of regexp object?

0 Answers  


write a vb script to display factorial of a number using function

1 Answers  






In what way program "hello world" you can write in vbscript?

0 Answers  


Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder

0 Answers   IBM,


Which object is used to work with the excel sheets in the vbscript language and what statement is used to create this object?

0 Answers  


how to increasing the numbers in a given text box please write a vb script

0 Answers  


How to make sure that items in a wintree are sorted al?

0 Answers   Ness Technologies,


Explain the scope of the variables using dim, public, and private keywords respectively.

0 Answers  


Explain How do you create a recordset object in vbscript?

0 Answers  


Categories