.. put simply i don't have one..
I open up designer, choose the "Main Window" form and i get a completely blank window, i'd assumed the menubar was part of the template form but even if it isn't i can't find a way to add one to the form from the preset tool list.


Information that may or may not be relevant: i'm using version 4.0.1 and on windows.

Any help'd be greatly appreciated!

Also.. while i'm here, any know why this is not producing an executable?
Qt Code:
  1. #include "ui_test.h"
  2. #include <QApplication>
  3.  
  4. int main(int argc, char *argv[]){
  5. QApplication app(argc, argv);
  6. QDialog *window = new QDialog;
  7. Ui::Test ui;
  8. ui.setupUi(window);
  9.  
  10. window->show();
  11. return app.exec();
  12. }
To copy to clipboard, switch view to plain text mode 

Having used qmake to make the project file and the makefile, i then set Dev-C++ to use said makefile... it seems to be compiling as no highlights or debug messages jump out at me... but in when i view the compiler readout window there's loads of random messages (like:
27 C:\Qt\4.0.1\include\QtCore\qatomic.h:1, from C:\Qt\4.0.1\src\corelib\kernel\qvariant.h In file included from C:/Qt/4.0.1/include/QtCore/qatomic.h:1, from C:/Qt/4.0.1/include/QtCore/../../src/corelib/kernel/qvariant.h
)

Cheers Max