TZUpdateSql missing editor

In this forum we will discuss things relating the ZEOSLib 6.6.x stable versions

Moderators: gto, EgonHugeist

Post Reply
louis
Expert Boarder
Expert Boarder
Posts: 107
Joined: 02.01.2009, 19:41

TZUpdateSql missing editor

Post by louis »

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
User avatar
mdaems
Zeos Project Manager
Zeos Project Manager
Posts: 2766
Joined: 20.09.2005, 15:28
Location: Brussels, Belgium
Contact:

Post by mdaems »

If you have a look at ZComponentReg.pas you'll see these lines :

Code: Select all

{$IFDEF FPC}
  RegisterComponentEditor(TZUpdateSQL, TZUpdateSQLEditor);
{$ELSE}
  {$IFNDEF VER130BELOW}
    {$IFNDEF UNIX}
  RegisterComponentEditor(TZUpdateSQL, TZUpdateSQLEditor);
    {$ENDIF}
  {$ENDIF}
{$ENDIF}
{$ENDIF}

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
Image
Post Reply