C++ Console App Run in Backround

Hello :D

I finished making a console app in MS Visual Studio 2008, except I need it to run in the background, so its not visible.

Is this possible? Thanks,

Muhasaresa
closed account (Gz64jE8b)
Making a virus are we?
1
2
3
4
5
6
7
8
#include <windows.h>

int main()
{
FreeConsole();
// whatever code you want here.
return 0;
}


Thanks :D

Muhasaresa

P.S. I'm not making a virus.
closed account (Gz64jE8b)
I trust you don't worry :)
Topic archived. No new replies allowed.