c++ - Create a Window in a Visual Studio 2012 console application? -
is there way create window in c++ console application? have console application creating data , want show them in graphics, not inside console. possible?
you use function called createwindowex(), see here.
it's rather complex, need create wndclassex structure , use registerclassex() on before passing parameter createwindowex(). need create message procedure function.
this article on msdn runs through quite nicely
Comments
Post a Comment