[View Borland Home Page][View Product List][Search This Web Site][View Available Downloads][Join Borland Online][Enter Discussion Area][Send Email To Webmaster]
Delphi Devsupport

Frequently Asked Questions

Application Server Forms

Question:

Do I need a form in the application server? 

Answer:

Yes.  It doesn't need to be visible, but you do need one.

To make the form not visible, set 

Application.ShowMainForm := False in the project file.



Example project source:

begin 

  Application.ShowMainForm := False; 

  Application.Initialize;

  Application.CreateForm(TForm1, Form1);

  Application.Run;

end.

Back To Faq Index
Borland Online
Trademarks & Copyright © 1997 Borland International, Inc.