Du musst die Procedure Configuration anpassen. Ich habe Dir lediglich nur ein Beispiel für ein anderes Formualr geliefert.
So
könnte Deine Login.dpr aussehen :
Delphi-Quellcode:
library Loginpr;
uses
SysUtils,
Classes,
Windows,
Forms,
Controls,
ExtCtrls,
Login
in '
Login.pas';
{$R *.res}
procedure LoginWindow(appHandle: THandle);
stdcall;
begin
if appHandle = 0
then apphandle := GetActiveWindow;
Application.Handle := appHandle;
try
with TLoginMain.Create(Application)
Do
try
ShowModal
finally
Free;
end
except
On E:
Exception Do Application.HandleException(E);
end;
Application.Handle := 0;
end;
exports
LoginWindow;
begin
end.
Nochmal, so könnte Deine Login.dpr aussehen. Es kommt darauf an, welchen Namen Du dem Formular gegeben hast.