vote up 1 vote down star
2

I have a simple application that I would like to sort of automate via switches. But when I do run it via switches I don't really want a user interface showing. I just want it to run, do it's job, print stuff out in the console, and exit. On the other hand if I don't run it with any switches I want the user interface to pop up. And in this case I don't really want a console window hanging around in the background.

Is there any way I can do this, or do I have to create two separate projects, one Console Application and one Windows Application?

flag

have you tried just inserting your code in the Main() function that's generated when you create a winforms app? Instead of calling Application.Run()? – No Refunds No Returns Nov 23 at 23:45
Somewhat related, especially if you want to write to the Console from a Windows application: stackoverflow.com/questions/666823/… – divo Nov 24 at 0:12

6 Answers

vote up 6 vote down

Whilst not exactly what you have asked, I've achieved the appearance of this behaviour in the past by using the FreeConsole pInvoke to remove the console window.

You set the output type of the project to be a console application. You then define the extern call to FreeConsole:

[DllImport("kernel32.dll", SetLastError=true)]
private static extern int FreeConsole();

Then, in you Main method you switch based on your conditions. If you want a UI, call FreeConsole before opening the form to clear the console window.

if (asWinForms)
{
    FreeConsole();       
    Application.Run(new MainForm());
}
else
{
    // console logic here 
}

A console window does briefly appear at startup, but in my case it was acceptable.

This is a bit of a hack though and has a bad smell, so I'd seriously consider whether you do want to go down this route.

link|flag
This is a very good approach for this situation. You can also AllocConsole (my deleted post showed this), but then your console is detached from the calling shell, if called from a shell. – Reed Copsey Nov 24 at 0:24
Won't run well under Mono anymore then though, will it? – Svish Nov 24 at 15:01
vote up 4 vote down

From 'The Old New Thing'

How do I write a program that can be run either as a console or a GUI application?

You can't.

(I'll let you click on the article for the details of how to fake it)

link|flag
What's with the 2 drive-by downvotes? – Aaron Nov 24 at 0:49
+1 for Raymond Chen reference. – Kyle Hodgson Nov 24 at 3:03
vote up 4 vote down

Sure, just put a switch statement (or if else construction) in the static main(string[] args), based on arguments passed in command line. I also do this to switch between executing as a service or as a console...

NOTE: Set project type as Console App

[DllImport("kernel32.dll", SetLastError=true)]
private static extern int FreeConsole();    
[STAThread]
static void Main(string[] args)
        {
            if (args.Length == 0 && args[0] == "C") // Console
            {                    
                // Run as console code  
                Console.WriteLine("Running as Console App");
                Console.WriteLine("Hit any Key to exit");
                Console.ReadLine();
          }
            else
            {
                //Console.SetWindowSize(1,1);
                //string procName = Assembly.GetExecutingAssembly().FullName;
                //ProcessStartInfo info = new ProcessStartInfo(procName );
                //info.WindowStyle = ProcessWindowStyle.Minimized;

                // EDIT: Thanks to Adrian Bank's answer - 
                // a better approach is to use FreeConsole()
                FreeConsole();
                Application.Run(new MyForm());
            }
        }

EDIT: Thanks to Adrian Bank's answer, FreeConsole() is much better approach to "dispense" with Console window than just minimizing it...

link|flag
How do you propose to implement that exactly? – Ed Swangren Nov 23 at 23:48
I think the "Run as Console" and "Run as winforms" are the interesting points here though. The OP could have guessed this much. – Ed Swangren Nov 23 at 23:50
2  
I guess people downvote it because it's not a real console app (those are impossible according to Raymond Chen: blogs.msdn.com/oldnewthing/archive/2009/01/01/…), but I think the approach is suitable for the OP's problem. I just think that the IF-Condition is completely wrong - should be an || I think. – Michael Stum Nov 24 at 0:03
2  
If you do this from a windows app you will not have access to stdin and stdout to read or write things to the console. If you mark your exe as a console application you will have a console hanging around. – Darryl Braaten Nov 24 at 0:06
1  
Indeed, this either runs the app with a GUI or hides it completely allowing no user input or output as expected from a console appliaction. – Joshua Nov 24 at 0:11
show 7 more comments
vote up 2 vote down

They are two different paradigms, I don't think that using a command line switch like this is a good idea. Why not build the core logic into a console application and then call that from the GUI when needed? This would nicely separate the UI from the implementation but would still provide a way to use the Console app stand alone when needed.

link|flag
Although I agree with this, it is sometimes helpful to have a single application that works as console or GUI - Visual Studio is a common example of this... – Reed Copsey Nov 24 at 0:21
Fair point, hadn't thought of that. I would assume that is a pretty rare thing to need though. – Ed Swangren Nov 24 at 0:23
I'm thinking about making two UIs, one console and one graphical, but yeah. Best solution is to have them in one. This way you can use it as a regular app, and using in a script for example. – Svish Nov 24 at 15:03
1  
But you can still do that if you have two separate programs, I don't see the need for wrapping it all into one. – Ed Swangren Nov 24 at 19:07
vote up 1 vote down

I believe the answer is no, or it was last time I looked into this problem.

The executable is marked as either a windowed application or a console application. You can see this in the properties for you project in Visual Studio, under application, Output type

You could simulate the behavior by having two application, a console application that if executed with no arguments launches the GUI application. You may see a console window flash, unless you ran in from an already open console.

link|flag
1  
Visual Studio does that trick, there is a devenv.exe Windows application and a devenv.com console application. – divo Nov 24 at 0:09
vote up 0 vote down

Without implementing your own version of a console window the answer is no. When Windows loads you executable it decides whether or not to give you a console window based on data in the PE header. So you can make a windowed app not have a window but you can't make a windoed app have a console.

link|flag

Your Answer

Get an OpenID
or
never shown

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