Hello,
I use MYSQL 4.2 with ODBC and have no problems with version 3.2
In version 4.0 (Build 79) the list page is not shown. The debugger stopps at line
maxpages = maxRecords \ nPageSize in list.view
Error message of debugger is : Typen unverträglich
The variable nPageSize = 20 and maxRecords = 59 are set properly
The problem is that maxrecords is cdbl and nPageSize not. So the division fails !!
I changed the code an now the problem is solved :
maxpages = cdbl(maxRecords) \ cdbl(nPageSize)
if cdbl(maxRecords) mod cdbl(nPageSize) > 0 then maxpages =maxpages +1
if cdbl(mypage) > cdbl(maxpages) then mypage = maxpages
Best regards
Uwe Pfeiffer