Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: erste oder günstigste WM_ Message
6. Mär 2007, 11:18
Gehe in den SourceCode Deiner EXE und ändere den wie folgend:
Code:
program CapSIGN;
uses
Forms,
FormMain in 'FormMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
[color=red]Application.ShowMainForm := False;[/color]
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|