how to store charecters of HARIBABU Using arrays
Answers were Sorted based on User's Feedback
Answer / aditya
Dim Word, reverse, arr1(), length, i
Word = Inputbox(" Enter a Word" )
length = len(word)
redim preserve arr1(length)
For i = 0 to (length -1)
arr1(i) = mid(word,i+1,1)
Next
For i = (length -1) to 0 step -1
reverse = reverse & arr1(i)
Next
msgbox reverse
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / monika
dim a()
str="haribabu"
j=0
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(j)
a(j)=s
msgbox a(j)
j=j+1
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / usha
str="HARIBABU"
for i =1 to len(str)
a = mid(str,i,1)
temp = temp & a & " "
next
msgbox temp
a = split(temp," ")
for i = 0 to ubound(a)-1
msgbox a(i)
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / b.hari babu
dim a()
cnt=0
str="haribabu"
for i=1 to len(str)
s=mid(str,i,1)
redim preserve a(cnt)
a(cnt)=s
cnt=cnt+1
for j=0 to ubound(a)-1
msgbox a(j)
next
next
| Is This Answer Correct ? | 1 Yes | 3 No |
write script to open Gmail.com, and to write script for entering username and password and show whether the result as pass or fail
I have attended Anovatek Software QTP interview. They will give us computer and one web based application with QTP. We have to automate some records (already updated records or new records) using QTP Data driven testing. But we should use for loop? Can any one know how to do data driven testing using For loop?
What is the use of the formatdatetime function in the vbscript language?
Is VBscript case-sensitive?
write a vb script to display the size of the folder,date created and name of the folder
when we use filter funtiom invb script(QTP)
Hellow friends, I am learning QTP,but here problem is VB script. please guide me how to learn VB script w.r.t QTP and if you know any books tell me or if you have any materials or any use full material or any else w.r.t QTP please post me p.p.sekhar
how to write a vb script in QTP for yahoo registration form, i want to check the performance also like performance test, stress, load test like that.
how to acces the remote mechine using vb cript(QTP)
Explain the tristate constants in vbscript?
in qtp we ve datatable look like excel ,if we want to extract data from excel which saved in my documet how can i get that in datatable using vb script
write a vb-script code to delete all the mails in my gmail in the year 2011