Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » MessageBox

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
29.10.2004, 13:42 Uhr
~DER NIXWISSER
Gast


hi,


wie kann ich in einer MessageBox variablen ausgeben?


C++:
MessageBox(NULL,"BLABLA"PW2"BLABLA"PH2 BPP2"BLABLA", "INFO",MB_OK|MB_ICONSTOP);



die varis PW2 PH2 & BPP2 hab ich vorher als integer gesetzt und ihnen auch einen wert zu gewiesen...
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
29.10.2004, 13:55 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft...
(Operator)


indem du die variable erst in einen string schreibst und diesen dann der messagebox zum anzeigen übergibst...
--
...fleißig wie zwei Weißbrote
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
30.10.2004, 15:45 Uhr
~DER NIXWISSER
Gast


....kannse das mal plz machen....BITTE
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
30.10.2004, 16:14 Uhr
RedEagle




C++:
string str_error;
str_error = "Fehler:";
MessageBox(NULL, "Ein fehler ist aufgetreten", str_error.c_str(), MB_ICONSTOP | MB_OK);                          



(Der Titel steht in der variablen

<string.h> einbinden!
--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
30.10.2004, 16:57 Uhr
derphilipder




Zitat von ~DER NIXWISSER:
....kannse das mal plz machen....BITTE


plz = Postleitzahl?
--
Konfuzius says: "A man who goes to bed with an itchy asshole is a man who wakes up with stinky finger!"
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
30.10.2004, 19:13 Uhr
~DER NIXWISSER
Gast


das is chatter sprache....

plz = please = bitte
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
30.10.2004, 19:21 Uhr
~DER NIXWISSER
Gast


da kommt ein Fehler....


C++:
MessageBox(NULL,"Momentane Auflösung " str_PW2.c_str() "*" str_PH2.c_str() "," str_BPP2.c_str()"Bit@60Hz", "INFO!!!",MB_OK|MB_ICONSTOP);



der fehler:
syntax error before `.' token
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
007
30.10.2004, 19:25 Uhr
~DER NIXWISSER
Gast


da wo du "Ein fehler ist aufgetreten" stehen hast sollen die varis rein...
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
008
30.10.2004, 20:21 Uhr
0xdeadbeef
Gott
(Operator)


In C:

C++:
#include <stdio.h>

/* ... */

char my_string[256];
int screen_width = 1024, screen_height = 768, screen_depth = 24;

snprintf(my_string, 256, "Momentane Auflösung %d*%d, %d Bit @ 60Hz", screen_width, screen_height, screen_depth);
MessageBox(NULL, my_string, "INFO!!!", MB_OK | MB_ICONSTOP);


In C++:

C++:
#include <sstream>
#include <string>

using namespace std;

/* ... */

int screen_width = 1024, screen_height = 768, screen_depth = 24;
std::stringstream sstr;

sstr << "Momentane Auflösung " << screen_width << "*" << screen_height << ", " << screen_depth << " Bit @ 60Hz";
MessageBox(NULL, sstr.str().c_str(), "INFO!!!", MB_OK | MB_ICONSTOP);


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: