hai friend's ..
my question is
a[0]=I
a[1]=N
a[2]=D LIKE IT GO'S
i need output INDIA ,using simple string how will u do?
can any one tell really need full..
Answer Posted / kishan
dim arr(4)
arr(0)="I"
arr(1)="N"
arr(2)="D"
arr(3)="I"
arr(4)="A"
msgbox join(arr)
(or)
str=""
for i=0 to ubound(arr)
str=str&arr(i)
next
msgbox str
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What contains Data Driven Framework document in qtp?
What are parameterizing tests?
What is the difference in the global and action sheet in qtp?
What are the different attribute used with regular expression?
in qtp 3 sheets is there in data table like global, action1, action2. I want to check the rows and columns in action2. how can check using script?
How do we handle run-time errors?
we add library file used in test via settings or through "ExecuteFile" command. when we implement framework do we make common library file and load the same for all the test cases execution?
How is recording done when a application is over lapping the QTP application it gives a message object not recorded
How can I change object description or check point values in qtp?
What is environment variable in qtp and why to use it?
What is checking bitmaps?
How to use reporter.report event in qtp ?
Can anybody post some real time scenario in qtp? please its very urgent.
how will load the object during runtime?
Print the Prime numbers in below format only up to 20(Need commas also) 1,2,3,5,7,9,11,13,17,19