join all the array values without using join function?
Ans:
Option Explicit
Dim strValue, arrValue,iCount
arrValue = Array("Srinivasulu","Thatavarthi")
For iCount = 0 To UBound(arrValue)
strValue =strValue&" "& arrValue(iCount)
Next
MsgBox strValue
'Actual Output:
---------------------------
---------------------------
Srinivasulu Thatavarthi
---------------------------
OK
---------------------------
| Is This Answer Correct ? | 1 Yes | 0 No |
What is difference between Active screen and movie screen recorder in QTP 9.2?
Explain about operator precedence in vb script?
What is the difference between vb debugger and the script debugger?
Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?
what is the use of Data base check point ?
what is the use of QCUtil? explain with one example?
How to find arry size in qtp vb script
Explain the constants in vbscript?
Write a program to create a Dynamic array of size 5 elements and display all the elements.
Write a test case using Test if the images,a particular test exists,check if the page links match,page response is within a certain range,parameterization of the test,the test should comprise of actions,the test should use a custom function,the test should use global repository
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
What's the difference between vbscript and vb.net?