Thread: Creating GUI's in C++ Builder 6

  1. #1
    Registered User
    Join Date
    Sep 2004
    Posts
    2

    Post Creating GUI's in C++ Builder 6

    Hello,

    I want to create some creative GUI's in C++ Builder 6. I have seen numerous skins, but want to use my own creativity and make my own.

    What tool(s) do I use to be able to do this? Im sure some of you have done this type of thing before. How did you go about doing it?

    Thanks!
    -Thad
    [email protected]

  2. #2
    Registered User
    Join Date
    Sep 2004
    Posts
    11
    i think this site will help you www.wxWidgets.com

  3. #3
    Registered User
    Join Date
    Sep 2004
    Posts
    2
    Quote Originally Posted by ameber
    i think this site will help you www.wxWidgets.com

    Thanks for the site... I went and d/i'ed wxAll-2.5.2.zip but am having probs figuring out how to install it.

    Any suggestions... and yes, i read the instructions..

    Thanks

  4. #4
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398
    DISCLAIMER: I haven't used wxWidgets (formally wxWindows), or Builder.

    Borland Builder itself can make Windows GUI programs. Is that what you want to do? It includes the full Windows API. Even the free command-line Borland compiler can make full Windows GUI programs. As I understand it, the whole idea of "Builder" is to make it easy for you.

    In general, Windows GUI programming is not that easy. I'm not sure how much "easier" it is with wxWindows or Builder. Here's a link to a Windows Tutorial. It shows you the "hard way" of making a Windows program (using the WinAPI).

    I assume that the "Builder" feature is similar to Microsoft's MFC. MFC provides you with pre-written blocks of code, and it will generate a program with a lot of "Your code goes here" comments. I haven't done much with MFC either, as I wanted to write the code myself.
    Last edited by DougDbug; 09-27-2004 at 02:38 PM.

  5. #5
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    wxWidgets is very handy and its also multiplatform. If you go to the message board on the site and look for help you should be able to get it installed with your compiler no problem. I do have to say this, however, without help or a pretty good idea as to what you are doing, that particular library is damn near impossible to use.

  6. #6
    Code Monkey Davros's Avatar
    Join Date
    Jun 2002
    Posts
    812
    Go here:

    http://www.flipcode.com/articles/art...skins-pf.shtml

    C++ Builder provides classes to wrap the Win API, which can be assembled at design time by dragging components on to windows. Thus making it much easier to produce GUIs than the Win API, MFC or even wxWidgets.

    However, it is essentially only wrapping the Win API, which you still have complete access to.
    OS: Windows XP
    Compilers: MinGW (Code::Blocks), BCB 5

    BigAngryDog.com

  7. #7
    Registered User
    Join Date
    Oct 2003
    Posts
    97

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Profiler Valgrind
    By afflictedd2 in forum C++ Programming
    Replies: 4
    Last Post: 07-18-2008, 09:38 AM
  2. A question on GUI's for a begginer
    By pastitprogram in forum C++ Programming
    Replies: 7
    Last Post: 06-09-2008, 03:42 PM
  3. THE END - Borland C++ Builder, Delphi, J Builder?
    By Davros in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 02-28-2006, 11:23 PM
  4. C++ Builder code
    By itld in forum C++ Programming
    Replies: 1
    Last Post: 07-04-2002, 08:42 PM
  5. Creating Screensavers in C++ Builder 5
    By Frozen_Solid in forum Windows Programming
    Replies: 0
    Last Post: 03-01-2002, 04:15 PM