Install Problems with Delphi 2010 Architekt and the newest Addin Express Version

Add-in Express™ Support Service
That's what is more important than anything else

Install Problems with Delphi 2010 Architekt and the newest Addin Express Version
 
Jochen Gaisser




Posts: 18
Joined: 2008-11-25
Hello Support Team,

i have a Problem installing the newest Version of Addin Express VCL on Win7 32 bit PC.
The Error while compiling:
[Fehler] adxolFormsManager.pas(3670): E2217 Published-Feld 'FindInfo' ist weder vom Typ class noch interface

The Code of the

  TFindWindow = class
    FindInfo: ADXFINDWINDOW;
    FHandles: TList;
    constructor Create(startHandle, findHandle:HWND; findClassName, findTitle:PChar); overload;
    destructor Destroy; override;
    procedure GetWindows(parentHwnd: HWND);

    property Handles: TList read FHandles write FHandles;
  end;


What can I Do???

best reguards Jochen Gaisser
Posted 04 Aug, 2010 01:52:32 Top
Jochen Gaisser




Posts: 18
Joined: 2008-11-25
Try this......

  TFindWindow = class
    private
    FindInfo: ADXFINDWINDOW;
    FHandles: TList;
    published
    constructor Create(startHandle, findHandle:HWND; findClassName, findTitle:PChar); overload;
    destructor Destroy; override;
    procedure GetWindows(parentHwnd: HWND);
    property Handles: TList read FHandles write FHandles;
  end;


Or is there a mistake????
Posted 04 Aug, 2010 02:36:14 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Jochen,

You can set the "Emit runtime type information" option for your add-in project to False. Please see the Project -> Options -> Compiling tab.
Posted 04 Aug, 2010 06:54:05 Top