CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Graphics in C++

  1. #1
    Join Date
    Jul 2008
    Posts
    22

    Graphics in C++

    Is there a way to add graphics to a program in C++ to make it look more fancy and just the boring type DOS window?

  2. #2
    Join Date
    Dec 2008
    Posts
    114

    Re: Graphics in C++

    => Subsystem : Windows

  3. #3
    Join Date
    Feb 2009
    Posts
    5

    Re: Graphics in C++

    Quote Originally Posted by carl666 View Post
    => Subsystem : Windows
    Are you serious ? I need to confirm it, I'd like to see your code, true!

  4. #4
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,633

    Re: Graphics in C++

    If I get you correctly, you are asking about bringing some graphics into plain console application, right? If yes, I wonder what is your idea about how such window would look like?
    Best regards,
    Igor

  5. #5
    Join Date
    Jul 2008
    Posts
    22

    Re: Graphics in C++

    Thanks guys...let me start learning

  6. #6
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Graphics in C++

    Obviously working with graphics means moving from a console application to a GUI-based one. You can either dive all the way into that using one of the GUI packages out there (either Windows-specific, or cross-platform), or you can go "just far enough" using one of the basic packages like GLUT which will allow you to play around with OpenGL a bit.

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