I just want a c# application with a hidden main window that will process and respond to window messages.
I can create a form without showing it, and can then call Ap
Form1 f1=new Form1(); f1.WindowState = FormWindowState.Minimized; f1.ShowInTaskbar = false;