ContributionsMost RecentMost LikesSolutionsRe: Regarding the NativeWebObject function to Find Elements in Web pagesHi I am not using Internet Explorer 8, My version doesn't have tabs and yet I have the same problem PakinamRe: Error in updating the DBTables element:Hi David, I am using Test Complete v 7.52 Does the readonly property of DBTables.Value apply here ?? Regarding the NativeWebObject function to Find Elements in Web pages Dear All, NativeWebObject.Find() doesn't work (the web page is not found despite I open the page on the explorer before starting the playback) Kindly find attached log screen shot This is my Script Sub NativeFindElement Dim PageObj Dim ProductLink Set PageObj=Sys.Process("iexplore").Page("http://www.automatedqa.com/") Set ProductLink=PageObj.NativeWebObject.Find("title","Products","A") If ProductLink.Exists Then Log.Message("ProductLink") End If End Sub Your help is highly appreciated Thanks About Web Comaprision CheckpointsDear All, I want the web comparison checkpoint to find all the differences and put them in one log, I don't want it to stop the script after finding the first difference. ThanksSample Applications used by Lino Tadrous and Steve TrefethenHello, I can't find in the Sample applications installed with testcomplete version 7 the Sample Applications used in the PDf "Test Complete version7 Made Easy" written by Lino Tadrous and Steve Trefethen Are they located some where to download them ? Your help in highly appreciated Thanks in advanceProblem in the DDT.ADODriver SQLStatement and ConnectionString Hi Guys, I have in my VB application two date pickers DTPfrom and DTPto I select from them two dates, a SQL statement on access DB called "School" is executed and in MSFlexGrid, I call it Grid in the script,the records between these dates are displayed I want MyDriver to execute the SQL Statement as well to ensure that Grid displays the right records ==> I tried to make it and I have error in the Code (Cannot convert from type "Dispatch" to "String") ==> here is the script Dim DTPfrom,DTPto Set DTPfrom = control2.Frame1.DTPfrom Set DTPto= control2.Frame1.DTPto Dim SQLStatement Dim ConnectionString Dim Driver ==> Those three Lines throw Exceptions 'Set ConnectionString="DSN=School;DBQ=D:\TestingProjects\School Access\School Project\Project\School.mdb;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;" 'Set SQLStatement="SELECT * FROM STUDENT WHERE ADMISSION_DATE >= #" & DTPfrom & "# and ADMISSION_DATE <= #" & DTPto & "# ORDER BY ADMISSION_DATE,ID" 'Set SQLStatement="SELECT * FROM STUDENT WHERE ADMISSION_DATE >= #" & Format(DTPfrom, "dd-mmm-yy") & "# and ADMISSION_DATE <= #" & Format(DTPto, "dd-mmm-yy") & "# ORDER BY ADMISSION_DATE,ID" 'Create Driver Set Driver=DDT.ADODriver(ConnectionString,SQLStatement) If Grid.Cols <> Driver.ColumnCount Then Log.Error "Columns are not of the same count" Exit Sub End If 'Retrieve from Driver Dim s While Driver.EOF() = False s=Driver.Value(0)&Driver.Value(1)&Driver.Value(2)&Driver.Value(3)&Driver.Value(4)&Driver.Value(5) Log.Message (s) Driver.Next Wend Error in updating the DBTables element:Hi guys, This is the error: Wrong number of arguments or invalid property assignment: 'DBTables.Table1.Values' The line throwing this error is: DBTables.Table1.Values(rowID,colID)="A" even when I ensured that both the rowID and colID are correct Your help is highly appreciated Thanks in advanceRe: Running Tests on different versions of my applicationHi David I tried to sent it to the link you have given me but I didn't recieve a Customer ID Here is the problem again in a simpler way I have 2 simple projects one called SchoolCorrect (lets call it version 1) and the other called School (version 2) The First I have used to record a keyword test called test1 then I want to run this test1 on the version 2 so I have changed in the test actions of the keyword test only the items that you will find a circle around them in the attached screenshot. Kindly find attached file called "theproblem" I have also attached another screenshot showing the log Also you will find the project suite Thanks in advance Re: Running Tests on different versions of my applicationI think my problem is that I didn't use what you have called "Name Mapping scheme". How can I do so Please?Re: The create data loop is not there when I right click in the test complete 7Dear David, Isn't there a way to make a data loop in Test complete 7 ?