如何创建没有任何界面的Windows Form程序

来源:互联网 发布:diy u盘 slc 知乎 编辑:程序博客网 时间:2024/06/16 09:45

为什么需要没有界面的Win Form程序?比如,需要创建一个Out-Of-Proc的COM Server应用程序(exe),这个COM Server只是公开一些方法被其他程序调用,不身不需要任何界面。


如何实现:


A. Creating the project

 Step1. Create a Visual Basic / Windows / Console Application project named VBExeCOMServer in Visual Studio 2008. Step2. Open the project's Properties page, and change the output type to "Windows Forms Application" in the Application tab. This avoids the console window when the executable file is started.
参考: How to: Make a Startup Windows Form Invisible http://msdn.microsoft.com/en-us/library/754w18dd(v=vs.110).aspx

参考:创建.net out-of-proc COM server http://support.microsoft.com/kb/977996

原创粉丝点击