Hi, i have a string like "INDIA". I need to display this
string vertically in Msgbox?
Answers were Sorted based on User's Feedback
Answer / lakshmi
Dim Str,I,J,Temp
Str="INDIA"
For i=1 to Len(Str)
J=Mid(Str,i,1)
Temp=Temp&J&VbCrlf
Next
Msgbox Temp
Please let me know if u any other answer which is simplest
than this.
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / mandar
Dim Str,I,J,Temp
Str="INDIA"
For i=1 to Len(Str)
J=Mid(Str,i,1)
Temp=Temp&J&Vbnewline
Next
Msgbox Temp
Is This Answer Correct ? | 2 Yes | 0 No |
str="INDIA"
For i=0 to len(str)
x=Mid(str,i,1)
Print x&VBCRLF
next
Is This Answer Correct ? | 0 Yes | 0 No |
How can you handle exceptions in qtp?
Hi can anyone pls suggest how to fetch username(system login name)and system name in to qtp.I am not using TD or QC.Thx
what are the different Frame Works in Quick Test Proffessional testing
Can you tell me the differences between writing the VB script manually for a application and recording the same application in QTP , with a example?
Please Clarify if smartidentfication is used at runtime when qtp does not recogonize the objects
What are the data types in qtp?
What are the drawbacks of QTP?
Please explain me i am using QTP 9.5 ,i am creating re usable scripts,i have to pass data from one local sheet to another local sheet.for example i am creating emploee information, (data is in action 2 local sheet),In this data table emplyeee number will get,i have to pass employee number to another reusable script search data (action2 local data sheet)
What is the use of sendkeys and what are send keys
what are the mandatory and assistive properties of objects in QTP?What is attached text?Plz assist me with proper answer.
IS standard check point is very important than the other check points in QTP? If so why?
A FORM CONTAINS 5 FIELDS. 1 FIELD IS ENABLED REMAINING(4) FIELDS DISABLED. MY QUESTION IS ENTER VALUES INTO 1 FIELD AFTER THAT CLICK TAB BUTTON THEN 2 FIELD ENABLE THIS PROCESS CONTINUE UPTO 5TH FIELD. HOW TO WRITE CODE IN DESCRIPTIVE PROGRAMMING. PLZ TELL ME THE PROCEDURE AND CODE FOR IT.