write a vb script to display the reverse of vbs
Answers were Sorted based on User's Feedback
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 |
How do you write an SQL insert statement?
write a vbscript for traffic signal
write a vb script to display the size of the folder,date created and name of the folder
How many types of procedures are available in the vbscript language?
Write a function for Instr(). We need to write a function that works as same as Instr(). Code or Even pseudo code is good enough for me.?
write a vb-script code to delete all the mails in my gmail in the year 2011
What is the use of the recordset object and which statement is used to create such an object?
In qtp, how to use XML files for framework. if the XML files are more Efficient than Excel files?
this q asked in applabs, q is: QTP should open google.com page and enter "qtp" in one edit(search) box and click search and should open google.com again and enter "job" in edit(search) box and click on search. I tried this but getting error "Edit(search) box matches more than one object", could anyone this question plz..
How strcomp function works?
What are the different types of operators and their order of precedence?
Hi, Anybody could tell me What is the script for Reverse of Given number. Ex:236--632. Thanks in Advance..