这是来自Borland公司的正宗答案:<br>To do this you will need to:<br><br>Select the View -> Project Source, from Delphi's main menu.<br><br>Add the Windows unit to the uses clause.<br><br>Add Application.ShowMainForm := False; to the line after<br>"Application.Initialize;".<br><br>Add: ShowWindow(Application.Handle, SW_HIDE); to the line<br>before "Application.Run;"<br><br>Your main project source file should now look something like<br>this:<br><br>program Project1;<br><br>uses<br> Windows,<br> Forms,<br> Unit1 in 'Unit1.pas' {Form1},<br> Unit2 in 'Unit2.pas' {Form2};<br><br>{$R *.RES}<br><br>begin<br> Application.Initialize;<br> Application.ShowMainForm := False;<br> Application.CreateForm(TForm1, Form1);<br> Application.CreateForm(TForm2, Form2);<br> ShowWindow(Application.Handle, SW_HIDE);<br> Application.Run;<br>end.<br><br>In the "initialization" section (at the very bottom)<br>of each unit that uses a form, add:<br><br>begin<br> ShowWindow(Application.Handle, SW_HIDE);<br>end.<br><br>