021
21.01.2004, 10:01 Uhr
kleinerprogrammierer
|
@Karahead: ich weiß nich was das für ne sprache is in c++ würde messagebox so aussehen (müssen)
C++: |
Application->MessageBoxA ("Text", "Überschrift", 0/*o.ä.*/);
|
ich habe jetzt diesen Quelltext
C++: |
//---------------------------------------------------------------------------
#include <vcl.h> #pragma hdrstop
#include "Unit1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" #include <stdio.h> TForm1 *Form1; char test[100]; //--------------------------------------------------------------------------- __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- int main(int args, char** argv) { int i; for(i=0; i<args; ++i) { sprintf(test, "Par #%d: %s\n", i, argv[ i ]); } } //--------------------------------------------------------------------------- void __fastcall TForm1::Button1Click(TObject *Sender) { Application->MessageBoxA(test,"",0); } //---------------------------------------------------------------------------
|
wobei
C++: |
//---------------------------------------------------------------------------
#include <vcl.h> #pragma hdrstop
#include "Unit1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" #include <stdio.h> TForm1 *Form1; char test[100]; //--------------------------------------------------------------------------- __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { } //---------------------------------------------------------------------------
|
automatisch vom c++ builder erstellt wird wenn ich dann auf den button klicke sehe ich eine leere MessageBox?? wenn ich das so richtig sehe wird main nicht aufgerufen? wie schaffe ich dass main aufgerufen wird? Dieser Post wurde am 21.01.2004 um 10:02 Uhr von kleinerprogrammierer editiert. |