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 want to when we will write the scripts either after getting the build or after getting the SRS?
What are keywords in the vbscript language?
what is the purpose of the Reporter.ReportEvent in QTP and also please give the brief description about Reporter.ReportEvent ?
What is the main difference between function and sub-procedure?
How to create a cookie using vbscript?
Explain a few date functions in vbscript
Explain about the asc function?
If else for do while select in vb script?
Can automation testing find ssame no. of bugs what we can find by manual testing?
HOW TO OPEN NEW TAB USING VB SCRIPT IN QTP?
can anyone tell me the procedure of interview held in applabs
I'm new to QTP, i facing a a problem in the script says"Object not found", "Browser("").page("").frame(Name:=fminfo).webtable(). the issue is, QTp is not able to identify the web table in run time.becuase in that fram"fminfo" there are "n"table and the table do not have the names,Html id. 1) i need to count the number webtables available on that page. 2)need to identify the webtable cell values. 3)How Loop the once i get the count and retrive the cell data of each webtable? Can anyone help on this, plz.. Thanks, Suresh