Formless Windows Application

  • Thread starter Thread starter maamir
  • Start date Start date
M

maamir

I have created a windows application in C#,It has a window's form but
nothing to show on that form , now i need to make my that applicaion
formless so that it can run in the background. Waiting for reply.

Thanks
 
I have created a windows application in C#,It has a window's form but
nothing to show on that form , now i need to make my that applicaion
formless so that it can run in the background. Waiting for reply.

If your app has nothing to show to the user, does that mean that it does not
really need any user interaction? If so, why not write it as a Windows
service?
 
-----Original Message-----
I have created a windows application in C#,It has a window's form but
nothing to show on that form , now i need to make my that applicaion
formless so that it can run in the background. Waiting for reply.

Thanks
.

I think you should consider a windows service instead.

Better suited for background processing.
 
It might be simpler to just make the form invisible with a Hide() during the
Main function.
 
maamir said:
I have created a windows application in C#,It has a window's form but
nothing to show on that form , now i need to make my that applicaion
formless so that it can run in the background. Waiting for reply.

You could have written it as a console application also, then you
just have to get rid of the console window when the application starts up.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top