You are not logged in.
Hello,
This Framework looks great! Downloaded latest source,
run the TestProject, only 1 failure in Pdf module which
I figure was minor.
However, when running 'MainDemo' on D2009 (Win XP)
get an access violation in unit SQLite3ToolBar, traced to line 2476, where the error occurs on the 2nd pass
of the loop:
---
for aPage := 0 to PagesCount-1 do begin
if TP^.CustomHint<>nil then // error!
---------------
So the stmt:
if TP^.CustomHint<>nil then
seems to fail the 2nd time it's executed.
Thanks for any help,
Regards Sami
Offline
This is somehow related to the Delphi 2009 object (keyword) issue .
You can see that "TP is an object" which is inherited from other object. So the quick solution (for now) is that you copy all fields from source object to the target object and the demo works then in Delphi 2009 too.
"Uncertainty in science: There no doubt exist natural laws, but once this fine reason of ours was corrupted, it corrupted everything.", Blaise Pascal
Offline