Thread: Beginer Help with gui

  1. #1
    Unregistered
    Guest

    Beginer Help with gui

    i am new to C++ and i downloaded the Borland C++ command line tools package, but i was wondering how i can make windows, gui's, ect. (i'm using windows98) is their a program that i can use to make them and then call them with code or what?

  2. #2
    Registered User matheo917's Avatar
    Join Date
    Sep 2001
    Posts
    279

    Talking

    heee heee......

  3. #3
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Friend, if you want to write gui programs you are going to have to invest much time and energy into it!

    Even if you DO use a so-called "library", you will still have to work very hard to understand HOW to use it!

    So, in a single word, the answer is "NO!!"
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  4. #4
    Unregistered
    Guest
    Originally posted by matheo917
    heee heee......
    If only it was that easy, but no. You have to look at application frameworks to handle gui's easily. Win32, MFC, Qt, Gnome, are just a few but they are pretty advanced if you're not completely familiar with c++ yet

  5. #5
    Registered User Sekti's Avatar
    Join Date
    Feb 2002
    Posts
    163

    here

    just a warning to make a blank windows box is 77 lines of code, but heres a link. go here go to tutorials -> programming -> programming win32 in c++
    blacksun.box.sk
    +++
    ++
    + Sekti
    ++
    +++

  6. #6
    Registered User xlnk's Avatar
    Join Date
    Mar 2002
    Posts
    186
    the best things in life are simple.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Convert Windows GUI to Linux GUI
    By BobS0327 in forum Linux Programming
    Replies: 21
    Last Post: 11-27-2005, 04:39 AM
  2. .NET And GUI Programming :: C++
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 01-27-2002, 04:22 PM
  3. GUI Programming :: C++ Exclusive
    By kuphryn in forum C++ Programming
    Replies: 5
    Last Post: 01-25-2002, 03:22 PM
  4. C++: Reference Book, GUI, Networking & Beyond
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 11-10-2001, 08:03 PM
  5. GUI (Graphical User Interface) Help Needed
    By Unregistered in forum C++ Programming
    Replies: 1
    Last Post: 10-11-2001, 10:35 AM