Looking for a simple GUI

Hi,I have recently begun studying C++, and I am having trouble with getting a GUI to work. I am using the Dev-C++ compiler.
what windowing tool kit are you using? or are you using the API of your OS... what exactly is the problem you're having?
The tutorial code I run fails. I have all the files in the correct directory, and I followed a tutorial about adding the GUI to my compiler but it still fails. I am trying to use wxWidgets.
Could you be more specific besides that 'it fails'?
Yes of course sorry. I get this error: "The system can not find the file specified."
I am now using wxDev-C++. This is something from a tutorial I was using.
1
2
3
4
5
6
7
#include "simple.h"

Simple::Simple(const wxString& title)
       : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(250, 150))
{
  Centre();
}

In the includes folder.
3rd Party
common
Well, clearly you are missing a file that is required for the program to run. Check to make sure you have all the files you need in the directory of your program.
Topic archived. No new replies allowed.