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 |
I need help to write a function in vbscript to click on a link. That link looks like a tab. There are 6 tabs. When I click on 1 tab it should show as "on". when I spy the class property is on. But for the one which is not clicked the class property is blank. I have objects created in our custom object repository. Please give me some idea.
Consider there are objects in a webapp which are identified by QTP. Suppose you know only the logical name of a object(absolutely nothing else about it). Which approach will you take to find the "micClass" of the object(You can't use Object Spy, or can't add the object in repository)?
What is the use of option explicit in vbscript?
how to retrive the tooltip by using descriptive programming in qtp?
What are the rules to name variable in vbscript?
Please let me Know regarding any material regarding VB Scripting which should be easily understandable for Beginners.
1)How to test whether items in a weblist are in alphabetical order or not?
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
what is used of Property........End Property loop ? how to write the script for it?
how to write a vb script in QTP for yahoo registration form, i want to check the performance also like performance test, stress, load test like that.
Illustrate briefly about the different types of statement
Open Yahoo Login Page in that page Suppose i have 100 mails and i want to delete 10'th mail now give procedure & Coding For that Scenario