Главная страница | назад





Article #15004: Application Server Forms

 Question and Answer Database
FAQ4D.txt Application Server Forms
Category :DCOM/MultiTier/ActiveForm
Platform :All
Product :Delphi 3.x
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.
7/16/98 4:31:28 PM

Last Modified: 01-SEP-99