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