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 to find which type of Framework is suitable for which type of application?
How to swap two numbers by using parameter passing method byref in a fucntion and return the result to outside of the function?
what is the purpose of .vbs file?
Take a situation when you are working with QTP, suddenly system has crashed.so you again start the system. My questyion is how can QTP directly opened when the system desktop appears.
How to find duplicates in an array and remove them efficiently?
how you will do cookie testing using QTP?
What is file database?
Batch testing in howmany ways u perfrom in QTP
How to test the mandatory fields in QTP?
How can we close all webbrowsers which are opened in out desktop?
To which environments does QTP supports ?
What are Test case selection criteria for Automation?