01-17-2013, 12:30 AM
Doing something simple minded like create a web page from Excel. I used three columns and put data into 35 rows and saved as html to my desktop (more rows than would be seen on screen).
Wrote the following code and all the rows were printed.
I do not understand your problem as DP works fine for me in this situation and in others.
Wrote the following code and all the rows were printed.
Code:
numRows = Browser("title:=Book1.htm").page("url:=file:///C:/Users/me/Desktop/Book1.htm").frame("name:=frSheet").Webtable("html tag:=TABLE").GetROProperty("rows")
print "numrows = " & numRows
Set obj = Browser("title:=Book1.htm").page("url:=file:///C:/Users/me/Desktop/Book1.htm").frame("name:=frSheet").Webtable("html tag:=TABLE")
For irow = 2 to numRows
row = ""
For icol = 1 to 3
row = row & ": " & obj.GetCellData(irow,icol)
Next
print "row = " & row
Next
I do not understand your problem as DP works fine for me in this situation and in others.