CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2007
    Posts
    274

    How to stop console window from appearing?

    I have a console application that doesnt require any interface with console window. When I run the application the console window still flashes on and off. Is there a way to stop this from happening, or a different approach I should take for an application that requires no user interaction.

  2. #2
    Join Date
    Sep 2006
    Location
    Eastern, NC, USA
    Posts
    907

    Re: How to stop console window from appearing?

    You can run your app as a windows app but not show any window as per this thread, or make it invisible or run in the background as per this thread.

  3. #3
    Join Date
    Mar 2007
    Posts
    274

    Re: How to stop console window from appearing?

    Guess I shoulda searched first.... I figured it out.


    http://www.codeguru.com/forum/showth...le#post1293601

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured