
C++ Graphics In A Win32 Console App?
Quote:
> I am using Micrsoft Visual C++ 6.0 Standard to create Win32 console
> applications. I now have a need for an app which uses graphics. For
example,
> I need a header(s) file(s) for Visual C++ which allows me to draw lines,
> squares, circles, fill colors, and text colors. So far, I haven't had any
luck
> making Visual C++ 6.0 work with any type of graphic. If you know how to
make
> fill colors, circles, squares, text colors, etc., using Visual C++ for a
> console application, or you have the Visual C++ include files to do so,
could
> you please let me know!?
A console-mode app is a text-mode app--you can't draw graphics. If you want
to open a GUI window from your console app and write on that, you can
certainly do it.