i would like to add an additional console window to log realtine info from my wpf application. Any idea??

Bayo

answer: console application in the project properties works for me. thank's

link|improve this question

By "additional", do you mean that you've already used the built-in console? Windows only allows a process to be attached to a single console, so if you want more than one, your options are (1) use a helper process or (2) make a GUI window that looks like a console. – Ben Voigt Sep 26 '11 at 17:35
If something works for you, don't edit your question. Instead mark the answer as accepted and maybe upvote it – yas4891 Sep 26 '11 at 17:54
feedback

2 Answers

up vote 3 down vote accepted

Don't do it.

Take a look at log4net or NLog for log output into a file. With the right configuration of those frameworks you get a lot more power (different log levels, automatic timestamps, automatic class names in front of every logged line)

And while you are at it, you might also want to implement a facade of your own, to hide the used logging framework from the rest of your code. This would allow you to easily change the logging framework, if and when the need arises.


If you want to have both a console and a GUI window for your program, you could implement this behaviour by compiling the project as console application (csc /target:exe). But beware: This most certainly leads to bad usability, because no user would expect your app to have both a console and a GUI window.

link|improve this answer
1  
Would you at least have the courtesy to explain that downvote? – yas4891 Sep 26 '11 at 17:28
+1 We use NLog at work, it's very useful, though depending on the situation for the OP, may not be the best tool (which obv we can't extrapolate) – Psytronic Sep 26 '11 at 18:02
compiling the project as console application works for me Thanks alot bros – Bayo Alen Sep 28 '11 at 12:35
feedback

You could call AttachConsole WIN API function and then call this function using PInvoke:

[DllImport("kernel32.dll", SetLastError = true)]
static extern bool AttachConsole(uint dwProcessId);

const uint ATTACH_PARENT_PROCESS = 0x0ffffffff;  // default value if not specifing a process ID

// Somewhere in main method
AttachConsole(ATTACH_PARENT_PROCESS);
link|improve this answer
I know this isn't the best answer for this question, but I stumbled upon this when I was trying to have my WPF application work both from the command line and from a regular GUI. This was the trick I was looking for. Now when a user puts the command line switch in I can output information to the console window and when it is run from the GUI it uses the regular Log4Net logging. Thanks! – Mike G May 23 at 18:26
feedback

Your Answer

 
or
required, but never shown

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