I have string like hp company.print tis like company hp.write a program in vbscripting
Hi,
We can write a code in 2 ways. one is Generic Code and another is Hard Code.
In Generic Code:
Str="hp company"
ArrayStr=Split(Str)
For i = uBound(ArrayStr) to 0 Step-1
expStr=expStr &" "& ArrayStr(i)
Next
msgbox expStr
-------------------------------------------------
In Hard Code:
Str="hp company"
ArrayStr=Split(Str)
expStr= ArrayStr(1)&" "&ArrayStr(0)
msgbox expStr
| Is This Answer Correct ? | 2 Yes | 0 No |
hai all.iam chandu..please let me know how to test a link in QTP when it is changing at run time..and what property we should take while we r using descriptive programming for a link..
Explain about the support of asp for vb script functionality?
Is vbscript language a case-sensitive language and what does it mean?
Why is it recommended to close the database connection every time after the work is completed?
Write a program to print all lines that contains a word either “testing” or “qtp”
Can someone please tell me what poor design in a relational database (not the layout or style) is and how it can be avoided? PLEASE...im desperate.
How to take whole text output from screen of Bitmap Application.
Description.Create
How to write a general script which should does the following a). If a page object is given, it should identify the page object of the corresponding page(site). b). It should identify all the links of that particular page. in QTP tool?
2 Answers IBM, Infosys, Wipro,
hey please tell me how to retriev data from excel sheet which puts the login name and password in the application? plz send me the code..please help me
When to use function procedures and what are its characteristics?
How to capture a runtime error in vbscript?