How to display the first 3 letters in these "ABCDEFGH" using
qtp script?
Answers were Sorted based on User's Feedback
Answer / manas
These script display the first 3 letters in that given
string:
Dim str , substr
str = "ABCDEFGH"
substr = mid(str,1, 3)
print substr
| Is This Answer Correct ? | 31 Yes | 3 No |
Answer / rajesh
MyString = "ABCDEFH"
LeftString = Left(MyString, 3)
MsgBox LeftString
| Is This Answer Correct ? | 23 Yes | 0 No |
Answer / rekha
By using simple "LEFT" function you can diaply the first 3
chars
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / gnani
Thanks a lot for your answer.
I have one more question which is asked in oracle, can you please send the answer.
Q:There are 4 columns and 10 rows, how to show the first column records using qtp script?
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / manas
Dim Conn, rs, ListOfRecords, x
' Connect to the Microsoft Access Database by createing a
object
set conn=CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/DataBase1.mdb" ' ex: Name of DataBase is
DataBase1.mdb
' Retriving data from Access using the SQL Query
' Column_name1 - Suppose first column
' Table - Suppose Name of Table
set rs=CreateObject("ADODB.recordset")
rs.Open "Select Column_name1 from Table", conn
for each x in rs.Fields
ListOfRecords = ListOfRecords & x.Column_Name1 & vbCrLf
next
MsgBox ListOfRecords
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / tvs ramakrishna chowdary
'every thing is correct up to query passing
'after that follow below code
rs.open "select column_name1 from table",conn
do while not rs.EOF
msgbox rs.fields(0)'here column count stards form 0
(or)
msgbox rs.fields("column_name1")'instead of column no we
can use column name also
next
| Is This Answer Correct ? | 0 Yes | 1 No |
Define Environment Variable in UFT and its uses?
will QTP accepts javascript?
VB scrip has a special command named LBound, which returns the starting index of an arry. What are the possible indexes an array can start with? options are given below. and one only the correct answer. pl select it 1. any index 2. only even non-negative 3. only 0 4. any non-negative integer
What is an environment variable?
can u explain relative path architecture framework in qtp?
what is the use of VIRTUAL OBJECTS? explain ?
How to connect QTP to Testdirector
Is it possible to switch between recording modes during a test creation?
How to remove the associated function library?
Among all the check points what is the most important checkpoint?
How to get all the objects count and objects names in webpage using QTP ?
Hi, i have a string like "INDIA". I need to display this string vertically in Msgbox?