I'm making a VB.net program via a text file and I'm compiling it using vbc.exe via command line. I'm trying to get just a simple program to run in the background of my computer. Problem is, it displays the annoying console window. How do I get nothing to show? No form, no console?

link|improve this question

1  
It sounds like a service. – LarsTech Nov 17 '11 at 14:01
@LarsTech Yes, kind of, I really don't need it to be one. It's just a small light weight program for personal use. Nothing that needs to be installed as a service. I would also run it myself. – Xander Lamkins Nov 17 '11 at 14:02
But if there's no Form and no Console, how would you interact with it? Close it? Do something with it? I think we need context here for what the program does. – LarsTech Nov 17 '11 at 14:06
@LarsTech The program itself is handled through key presses. It uses key hooks to read what I press and based on what keys I press (e.g. SHIFT + TAB) to do something. – Xander Lamkins Nov 17 '11 at 14:08
feedback

2 Answers

up vote 6 down vote accepted

I think you need a form of some kind to keep the message loop going.

Maybe a NotifyIcon type program. It would keep it away from the task bar and desktop areas.

And then customize the NotifyIcon to "Only Show Notifications" from the "Customize" menu for your icon using Windows.

link|improve this answer
1  
Lars is correct - if you don't want to use a windows service then you shouldn't be running a program in the background without the user being able to 'see it' - this will also give them the option to Exit the application without having to resort to task manager. – Matt Wilko Nov 17 '11 at 16:03
feedback

Just use windows forms application don't load the form at all! Just go in project properties and uncheck enable application framework. Now, in the startup object dropdown, select "sub main". Add a module to the project and put a Public Sub Main() in it. You do all the stuff in main() and don't load form at all.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.