Thread: interface for my app

  1. #1
    Registered User
    Join Date
    Nov 2007
    Posts
    43

    interface for my app

    all right i have built an application but now i wont to to make a interface for it instead of using the cmd how do I go about this?? any good books or tutorials you guys know of would be helpful. thanks
    I’m Dyslexic and I know that I don’t spell well so quit telling to learn my English because I do my best at it all right.

    Windows XP with Dev-C++ for now.

  2. #2
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Assuming Windows XP, you quite a few options. Here are some of the popular ones:

    • Learn the Windows API. This is the defacto standard for online Windows API tutorials.
    • Learn MFC. MFC is a collection of C++ classes that wrap the Windows API.
    • Learn a GUI toolkit that supports Windows. The following are portable GUI toolkits (afaik they cover most operating systems):
      • wxWidgets (I recommend this one.)
      • GTK+
      • Qt


    For a more complete list of GUI toolkits:

    http://en.wikipedia.org/wiki/List_of_widget_toolkits

    Please remember, however, that GUI programming is considered somewhat advanced. You should be well grounded in C++ before you attempt full projects with full fledged GUIs. This is because knowledge and familiarity of pointers, including function pointers and callbacks, memory management, threads, and other such items are expected right away in some cases.
    Last edited by MacGyver; 12-06-2007 at 03:00 PM.

  3. #3
    Registered User
    Join Date
    Nov 2007
    Posts
    43
    Thank you
    I’m Dyslexic and I know that I don’t spell well so quit telling to learn my English because I do my best at it all right.

    Windows XP with Dev-C++ for now.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. How to get RSSI value, send to sensor, sensor receive package, repackage it?
    By techissue2008 in forum Networking/Device Communication
    Replies: 1
    Last Post: 03-04-2009, 10:13 AM
  2. non-MFC DLL with MFC app question.
    By Kempelen in forum Windows Programming
    Replies: 10
    Last Post: 08-20-2008, 07:11 AM
  3. best program to start
    By gooddevil in forum Networking/Device Communication
    Replies: 4
    Last Post: 05-28-2004, 05:56 PM
  4. OOP in C
    By lyx in forum C Programming
    Replies: 4
    Last Post: 11-23-2003, 01:12 PM
  5. Dialog app interface with web page...
    By Unregistered in forum Windows Programming
    Replies: 5
    Last Post: 01-29-2002, 08:41 PM