Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"
Answer / gaurav sharma
Dim strVar
strVar = "Quick Test Professional"
strRevrs = ""
strSplit = Split(strVar," ")
For iLoop = Ubound(strSplit) To Lbound(strSplit) Step -1
strRevrs = strRevrs&" "&strSplit(iLoop)
Next
MsgBox strRevrs
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you data drive an external spreadsheet?
What is Cross browser testing? Does UFT support it?
what is testing process with QTP in organization
What is the difference between Mandatory and BaseFilter Properies..Anybody please answer me..Thanks in Advance
How many types of parameters are there in QTP and what are they?
How to connect the real time application application with the QTP?
Hi All, I want to know how can we schedule QTP scripts. Am using 9.5 version and in our office they want to schedule individual scripts of QTP so that it can run unattended during night time, Please help me how to do that. 2. what is the use of silent test run in qtp can I schedule the scripts in Silent runner, Please explain. 3.I retrieved data from the database using output value -> Database output value. the result of the query for eg is 5 rows, iam able to output the first row by selecting the cols and adding it to output, but am not able to do it for the rest of the rows. please tell me how to do it. Sorry for posting so many qns, am not able to find answ to any of the above in any websites, hoping that someone would really help me with these here, please help me. awaiting for ur immediate revert. Priya
write a qtp code to display all the items in the fly from combo box or list box
What is meant by a Check Point in UFT? Also, explain the applicable Check Points.
Can any body please tell me the steps of keyword driven frame work in qtp. My mail is saswat445@gmail.com please send some materials on keyword driven testing in qtp. thanks a lot...
I had created the new virtual objects for web application buttons. how to add those virtual objects into object repository. Previously i had used Gui map in winrunner for capturing virtual objects for web application. Please help me regarding this. need your answer quickly
Q- what is the advantage of merging tool in QTP 9.2?