can any one tel ,using simple string
a[0]=I
a[1]=N
a[2]=D like that it go's
.
.
out put i need INDIA help me it's really need full ..
Answers were Sorted based on User's Feedback
Answer / lakshmi
You can use function JOIN
Dim arr(10)
arr(0)="I"
arr(1)="N"
arr(2)="D"
arr(3)="I"
arr(4)="A"
Msgbox Join(arr) - it will display INDIA
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / kishan
option Explicit
Dim Str, i, arr_len
Dim arr(10)
arr(0)="I"
arr(1)="N"
arr(2)="D"
arr(3)="I"
arr(4)="A"
arr_len=Ubound(arr)
for i=0 to arr_len
Str=str&arr(i)
next
msgbox Str
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / shyamala
a=array("I","N","D","I","A")
msgbox (a(0)+a(1)+a(2)+a(3)+a(4))
| Is This Answer Correct ? | 0 Yes | 0 No |
How can we log a defect in Testdirector from Q.T.P ?
Hi, When iam trying to import sheet to the QTP Global data table at the run time using the Importsheet method.It is able to import the sheet but no data is present after the import due to which the test is failing.Could anyone suggest what should be done. When I open the actual excel sheet data is present and is not corrupted.
plz explain QTP real time work( Means where you store scripts and how u access scripts next day? where those activities we are maintaining, If By usig VSS how the process in going on , plz explain briefly?
How To write script in QTP For Field Validation Example: password Field is accepting A range 8-20 characters only.How to write script?
How to export quicktest professional results to an .xls file?
in which situation u will use recording and in which situation u will used to write script manually
what is the advatages of merging of object repositories in Qtp9.0
A web Page has 2 frames. Find out the number of weblist items in the second frame of the page.
Object Repositories types, which & when to use?
What type of automation frame work you are using?and why?
VB scrip has a special command named LBound, which returns the starting index of an arry. What are the possible indexes an array can start with? options are given below. and one only the correct answer. pl select it 1. any index 2. only even non-negative 3. only 0 4. any non-negative integer
How to handle recovery scenario for a application crash.write script for this.