i have an external excel datasheet where it only contains 3
rows. after qtp executed the code to import the datasheet,
the datatable getrowcount method now gives me a different
value, lets say 60,000+ instead of only 3. i did not have
any values starting from row 4 of my excel file. why is
this happening? this also results to the qtp report to load
for a very long time.
No Answer is Posted For this Question
Be the First to Post Answer
Use of environment variables?
What does mean by Scope of Automation?n How we defined it?
how can we retrieve ten rows from the data table using loop concept?
i need the licence key for QTP V9.5 can anyone help me on getting this?
what is diff b/w function and action?
i want know iam working 2+ exp in QTP can i do performence testing (eg:loadrunner) yes r no?
how to prepared for first for the first interview?
What is data driver in qtp?
What is the architecture of your project? Can any one answer for this question plz........
what is vmodel?advantages and disadvantages of vmodel?
Hi I have created a table in the MS access database. I want to access the table in this database through QTP. The code is given below. The code is not working.The following error is displayed "Data source name not found and no default driver specified". Any one can correct the code. Thanks in advance. Dim dbconnection, rs Dim ca, sname Set dbconnection = createobject("ADODB.Connection") Set rs = createobject("ADODB.Recordset") dbconnection.open "DSN = MS Access Database","", "" rs.open "select * from Research", dbconnection rs.movefirst If rs.EOF <> True AND rs.BOF<> True then ca = rs("order_number") sname = rs("customer_number") rs.movenext msgbox ca msgbox sname End If
How to Synchronize the Browser at Field level? For example if you put Browser.sync(), it will wait upto for that Browser sync only. But It should wait upto total Browser get uploaded with all fields. Note : We don't know Which fields will come in that Browser. Means without knowing field names.