Thread: First time Creating Win32 application with UI

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Apr 2009
    Posts
    34

    First time Creating Win32 application with UI

    I need to create a simple Win32 application with UI. I've done some Win32 programming before, but haven't really created a Win32 non-console application.
    There seem to be many options/combinations of option, and I was having hard time choosing which one to use.

    Couple of technologies I've come across while I was searching are

    MFC
    GDI(++)
    ATL support for creating UI
    Native Win32 APIs for controlling UI (window, dialog, etc...)

    From my understanding so far, it is possible to create a windows application (with UI) only with GDI++ and native win32 support, but it is rather a time-consuming task. So develoeprs use either MFC or ATL to simplify the implementation. It also seems that MFC is a dying technology, and people learn it only to be able to read legacy codes. So exactly when should I choose MFC over ATL and vice versa?

    One of the primary restraints I have with my program is, it has to be written in native code (can't use C# or Java for deployment reasons). However, the program itself would be relatively simple, you can think of it as a launching pad that launches preinstalled programs by clicking on some buttons. Thanks!
    Last edited by chiefmonkey; 09-22-2009 at 03:43 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. using 'cin' like function in win32 application.
    By blacksheep in forum C++ Programming
    Replies: 2
    Last Post: 01-30-2003, 02:49 PM
  2. Is this really true or it's just science fiction?
    By Nutshell in forum A Brief History of Cprogramming.com
    Replies: 145
    Last Post: 04-09-2002, 06:17 PM
  3. time class
    By Unregistered in forum C++ Programming
    Replies: 1
    Last Post: 12-11-2001, 10:12 PM
  4. Can I Load A Sound or Music Into My Win32 Application ?
    By SonicWave in forum Windows Programming
    Replies: 8
    Last Post: 09-21-2001, 07:54 AM
  5. How To Call A User-defined Class in Win32 Application?
    By SonicWave in forum Windows Programming
    Replies: 2
    Last Post: 09-18-2001, 10:23 AM