Hallo,
Scenario: zeosDBO 6.6.4
Delphi 5 Prof.
The editor is missing in TZUpdateSql, why?
If I try to double click on component, the editor do not open!
What i wrong during installation?
Thanks
Luigi
TZUpdateSql missing editor
Moderators: gto, EgonHugeist
- mdaems
- Zeos Project Manager
- Posts: 2766
- Joined: 20.09.2005, 15:28
- Location: Brussels, Belgium
- Contact:
If you have a look at ZComponentReg.pas you'll see these lines :
This means somebody explicitly commented it out for the older Delphi versions. (Delphi5 and bellow)
No idea why, but I assume there's a good reason for that.
Mark
Code: Select all
{$IFDEF FPC}
RegisterComponentEditor(TZUpdateSQL, TZUpdateSQLEditor);
{$ELSE}
{$IFNDEF VER130BELOW}
{$IFNDEF UNIX}
RegisterComponentEditor(TZUpdateSQL, TZUpdateSQLEditor);
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
No idea why, but I assume there's a good reason for that.
Mark