Thread: I've got the basics down...

  1. #1
    Rad gcn_zelda's Avatar
    Join Date
    Mar 2003
    Posts
    942

    I've got the basics down...

    now how do I create a program like Word. GUI, I think it's called, where you can type stuff in, go back and change it, click stuff, and so on?

  2. #2
    Registered User
    Join Date
    Apr 2003
    Posts
    2,663
    lol. GUI=graphical user interface. It's not quite that simple. You need to know more than the basics, and then you need to study either the win32 API--->a 1500 page book, or study Visual C++-->500 page book.

  3. #3
    Rad gcn_zelda's Avatar
    Join Date
    Mar 2003
    Posts
    942
    aww...man...Well....I've read up to classes in my trusty idiots guide to C++ book...is that enough?

  4. #4
    Registered User major_small's Avatar
    Join Date
    May 2003
    Posts
    2,787
    ever wonder why the word program was written by a team?
    Join is in our Unofficial Cprog IRC channel
    Server: irc.phoenixradio.org
    Channel: #Tech


    Team Cprog Folding@Home: Team #43476
    Download it Here
    Detailed Stats Here
    More Detailed Stats
    52 Members so far, are YOU a member?
    Current team score: 1223226 (ranked 374 of 45152)

    The CBoard team is doing better than 99.16% of the other teams
    Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

    Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

  5. #5
    Rad gcn_zelda's Avatar
    Join Date
    Mar 2003
    Posts
    942
    no. But Rpgtoolkit was made by one person.

  6. #6
    Registered User
    Join Date
    Apr 2003
    Posts
    2,663
    As far as C++ goes, you need to know about inheritance and virtual functions and polymorphism too.

  7. #7
    Registered User
    Join Date
    Nov 2002
    Posts
    82
    Zelda, you have a reeeeaaaallllyy long way to go Even those who are adept in C++ classes <i>will</i> have a hard time adjusting to GUI programming.

  8. #8
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398
    Here's a link to a Windows tutorial

    "Programming Windows" by Charles Petzold is generally considered the best book on the subject. And yes, it's almost 1500 pages.

    Windows programming is rather involved. Petzold's "Hello Windows" program is about 50 lines of code. However, he only uses C. (You don't need to know classes, polymorphism... or any C++ features to get started.) Petzold focuses on the GUI/user interface. So, although his examples are not short, his program logic / algorithms are not complex.

    You can start learning windows programming as you continue to learn C++.

  9. #9
    Registered User
    Join Date
    May 2003
    Posts
    14
    If you want it done faster you could build the GUI in Java and use JNI.
    http://www.acm.org/crossroads/xrds4-2/jni.html
    /h

  10. #10
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    C++ is the language. To program Windows you need to use the Win32 API, or a class library like MFC or VCL, but I would always advocate learning at least the basics of the API before trying a class library.

    Attached is a really basic Windows program.

    Ask Windows specific questions on the Windows board.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  11. #11
    Registered User
    Join Date
    Mar 2003
    Posts
    73
    I suggest making it a console application, I made a simple text editor in that and that wasn't that hard. Then like everyone said, after a while move to Windows. (something I'm not up to in skill yet.. )

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. "Modern C++ and Basics of OO Programming" (e-learning course)
    By Erhard Henkes in forum C++ Programming
    Replies: 5
    Last Post: 09-16-2004, 03:01 PM
  2. Win Api Basics...
    By Devil Panther in forum Windows Programming
    Replies: 19
    Last Post: 09-09-2004, 11:28 AM
  3. C++ Basics part two
    By frenchfry164 in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 11-22-2003, 11:34 AM
  4. The Basics
    By Granger9 in forum Windows Programming
    Replies: 5
    Last Post: 09-13-2002, 05:12 PM
  5. OO Basics
    By DISGUISED in forum C++ Programming
    Replies: 3
    Last Post: 01-04-2002, 07:25 PM