Hi all, also folgendes…
wenn ich Dev ++ den Befehl gebe (Default Compiler) Compilieren und ausführen, bei diesem Code:
// base.h
#ifndef BASIC_H
#define BASIC_H
class HalloWeltApp : public wxApp {
public: virtual bool OnInit();
};
class BasicFrame : public wxFrame {
public:
BasicFrame( const wxChar *title,
int xpos, int ypos,
int width, int height);
~BasicFrame();
};
#endif
// base.cpp
#include <wx/wx.h>
#include "base.h"
IMPLEMENT_APP(HalloWeltApp)
bool HalloWeltApp::OnInit() {
BasicFrame *frame =
new BasicFrame( wxT("Hallo Welt"), 50, 50, 450, 300);
frame->Show(TRUE);
SetTopWindow(frame);
return TRUE;
}
BasicFrame::BasicFrame (
const wxChar *title,
int xpos, int ypos,
int width, int height)
: wxFrame ( (wxFrame *) NULL,
-1, title,
wxPoint(xpos, ypos),
wxSize(width, height)) { }
BasicFrame::~BasicFrame() { }
kriege ich ein Fenster. Soweit so gut. Dass soll ja so sein. Wenn ich jetzt aber manuell auf die exe Datei klicke kriege ich eine Fehlermeldung…
Mit Dev++ (Kompilieren und Ausführen):
[SIZE=1]ist net ganz drauf, sollte aber als vorstellung reichen
http://tdagaming.td.funpic.de/mitdev.png
[SIZE=2]Ohne Dev, maunell per Mausklick:
http://tdagaming.td.funpic.de/ohnediv.png
[/SIZE][/SIZE]
greez web_spider