write string reverse prog using vb script with out using
string reverse statement();
Answers were Sorted based on User's Feedback
Answer / uday
str="uday"
msgbox strreverse(str) 'just for info sake.
'this is the script
For i=len(str) to 1 step -1
resultchar=mid(str,i,1)
result=result+resultchar
Next
msgbox result
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ankarao
str="Ankarao"
l=len(str)
for i=n to 1 step-1
res=mid(str,i,1)
rev=rev+res
next
msgbox rev
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jagadish
str = "jagguvamsee"
n=len(str)
for i = 1 to n
a = mid(str,i.1)&a
msgbox a
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / lak
str ="Lakshmi"
For i=1 to len(str)
strrev = mid(str,i,1)&strrev
Next
msgbox strrev
| Is This Answer Correct ? | 0 Yes | 0 No |
how can we merge the object repositories?is ther any option in qtp to merge the object repositories if we have two or three object repositories?
can u expect, major bugs in NET BANKING Project? Modules Transaction Module, Customer Relation Module.
Hi, I Need code to click the webbutton inside of webtable. I need to click a particular 'Edit' webbutton inside of webtable. For Example... Having 5 Rows and 10 Columns. 'Edit' webbutton are placed in 10th Column. I need to click the 3rd row 'Edit' button with unique value. Browser("....").Page("...").Frame("...").WebButton("btn_Edit ") I Tried with below code: Set objButton = Browser("...").Page("...").Frame("...").WebTable("...").Chil dItem(3,10, Webbutton,0).Click - Not working this code :( Anyone can help me to sort out this simple issue ???
how many scripts r there in QTP? pls any answer this question?
Hi Friends, Can any one answer this question? 17) What method is used to retrieve the number of columns in the query results? A. Fields.Count B. Fields.Item(EOF) C. Fields.Count(BOF) D. Fields.Count.Value
Hello! i am having two comboboxes.Each having 10 items in it.when i select first item in first combobox,it is not similar in the second combobox.for ex in first combo if it is Hyderabad,in second it should be some chenai or some other item .Write a VBSCRIPT for that?
We have 10 page.In first page we 2 popup and next page we 3 popup window......(windows name is different)how can we handle the all the popups without using recovery scenario
Difference between image checkpoint and bitmap checkpoint
Thanks Rag... One more question, How we test the dynamic images which frequently changed?Using the bitmap checkpoint r any other options available.... Can u give the steps pls... Thanks
Can we Test Welcome Screens and Process Images with QTP
How we can add actions in the test using QTP?
How can i check all the button that are enabled in a widnows based application ? What script should i write for this ?