Thread: Windows GUI

  1. #1
    Registered User
    Join Date
    Sep 2001
    Posts
    19

    Windows GUI

    What header file (I'm assuming that's what I use) should I include to make my program run in the Windows enviroment, rather than DOS?

    I'm new to C++, so maybe this kind of thing is too advanced for me, but I would like to learn if possible. Thank you.

    (I am using MS VC++)
    Jacob Sheehy

  2. #2
    Toaster Zach L.'s Avatar
    Join Date
    Aug 2001
    Posts
    2,686

    MFC

    Using MS VC++, you would most likely use the Microsoft Foundation Classes (MFC) to create GUI's. I would recommend staying away from GUI's until you are more experienced with C++ though.

  3. #3
    .
    Join Date
    Aug 2001
    Posts
    598
    Guess what you are already running your programs in windows ,not does. that screen that looks like dos is actuly some thing know as a console window.

    But you probbly are thinking about the window gui, you need to hold that off for a while.

    Oh yea that header file is "windows.h"

    On the mfc thing: MFC is a C++ class wrapper for the windows API. When you go into windows gui programming learn the windows API first then MFC.
    Last edited by gamegod3001; 09-04-2001 at 06:05 PM.
    To Err Is To Be Human. To Game Is Divine!"

  4. #4
    Registered User
    Join Date
    Sep 2001
    Posts
    19
    Ok, thank you!
    Jacob Sheehy

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C++ gui for windows where to start
    By prixone in forum Windows Programming
    Replies: 2
    Last Post: 12-16-2006, 11:48 PM
  2. Windows GUI Preprocessing
    By Jaken Veina in forum Windows Programming
    Replies: 5
    Last Post: 07-22-2005, 01:22 PM
  3. Linux's GUI slower than windows'....
    By Nutshell in forum A Brief History of Cprogramming.com
    Replies: 34
    Last Post: 02-16-2002, 08:47 PM
  4. GUI Programming :: C++ Exclusive
    By kuphryn in forum C++ Programming
    Replies: 5
    Last Post: 01-25-2002, 03:22 PM
  5. C++: Reference Book, GUI, Networking & Beyond
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 11-10-2001, 08:03 PM