Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to display the first 3 letters in these "ABCDEFGH" using
qtp script?

Answers were Sorted based on User's Feedback



How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

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

How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

Answer / rajesh

MyString = "ABCDEFH"
LeftString = Left(MyString, 3)
MsgBox LeftString

Is This Answer Correct ?    23 Yes 0 No

How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

Answer / rekha

By using simple "LEFT" function you can diaply the first 3
chars

Is This Answer Correct ?    12 Yes 0 No

How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

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

How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

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

How to display the first 3 letters in these "ABCDEFGH" using qtp script?..

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

Post New Answer

More QTP Interview Questions

Define Environment Variable in UFT and its uses?

0 Answers  


will QTP accepts javascript?

14 Answers   AppLabs,


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

1 Answers  


What is an environment variable?

1 Answers  


can u explain relative path architecture framework in qtp?

0 Answers   Mindlance,


what is the use of VIRTUAL OBJECTS? explain ?

4 Answers  


How to connect QTP to Testdirector

4 Answers   BirlaSoft, Polaris,


Is it possible to switch between recording modes during a test creation?

0 Answers  


How to remove the associated function library?

0 Answers  


Among all the check points what is the most important checkpoint?

5 Answers   Semantic Space,


How to get all the objects count and objects names in webpage using QTP ?

6 Answers  


Hi, i have a string like "INDIA". I need to display this string vertically in Msgbox?

3 Answers  


Categories