Board index » delphi » Hiding Out-Of-Process Local COM Server

Hiding Out-Of-Process Local COM Server

Hi,

I've written COM server and now I need to run it non-interactive and I don't
know how to do it.
( using D5, W2k, and there is only one form ( main ) in my application )

Help me !!!

Thanks

   mk

 

Re:Hiding Out-Of-Process Local COM Server


Set the property ShowMainForm to false in your dpr file.

Application.Initialize;
=> Application.ShowMainForm := False;
Application.CreateForm(....);

--

Rob Lans

Remove (nospam) to reply.

Quote
Marcel Kopcek <marc...@datapac.sk> wrote in message news:3ba9fbad_2@dnews...
> Hi,

> I've written COM server and now I need to run it non-interactive and I
don't
> know how to do it.
> ( using D5, W2k, and there is only one form ( main ) in my application )

> Help me !!!

> Thanks

>    mk

Other Threads