Hi,
I am having trouble with FLTK displaying a window for a helloWorld program, and
I was hoping that someone could help. I am running Win7 with VC++ 2008 Express
Edition, and I have the following code:
#include <FL/Fl.h>
#include <FL/Fl_Box.h>
#include <FL/Fl_Window.h>
int main()
{
Fl_Window window(200,200,"Window Title");
Fl_Box box(0,0,200,200,"Hello World!");
window.end();
window.show();
return Fl::run();
}
It compiles no problem, but no window is shown at all. Anyone have a clue?
Thanks in advance!
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk