Thema: Delphi Form in DLL - ShowModal

Einzelnen Beitrag anzeigen

heri

Registriert seit: 20. Mär 2006
81 Beiträge
 
Delphi 2006 Enterprise
 
#4

Re: Form in DLL - ShowModal

  Alt 27. Jun 2006, 15:27
you are the hero! yes that's it!

manchmal kommt man auf die 'einfachsten' sachen nicht, deshalb an alle hier die LÖSUNG:
man muss den Application Handle vor dem FormCreate zuweisen:

Delphi-Quellcode:
procedure FormShowModal(AHandle: THandle); stdcall;
begin

  Application.Handle := AHandle;

  with TFormDLL.Create(nil) do
  begin

    ShowModal;

    Free;

  end;

end;
thx a lot - i'm
  Mit Zitat antworten Zitat