KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:30 PM |
like in javascript, alert("Message").
Is it already able to be used, or do I have to make it myself? |
|
|
| Report Abuse |
|
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
| |
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:32 PM |
| I think thats for python.. :P? |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
|
| 06 Oct 2011 07:33 PM |
| Depends on your OS, and library you're using |
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
| |
|
aboy5643a
|
  |
| Joined: 20 Nov 2010 |
| Total Posts: 2785 |
|
|
| 06 Oct 2011 07:36 PM |
What IDE??
"I like dooly-bops" -- ArceusInator |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
|
| 06 Oct 2011 07:36 PM |
?
GNU isn't a library or an OS :O |
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:36 PM |
| I have codeblocks and DEV-C++ .-. |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
|
| 06 Oct 2011 07:37 PM |
| but wat OS/library/toolkit/watever r u usin//?//????//??/??.?? |
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:37 PM |
@Mykros, I got confused :P STAWP INTERROGATING ME!! |
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:38 PM |
| Can I just get a solid yes or nop, or a website .-. |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
|
| 06 Oct 2011 07:39 PM |
K,
Imma assume you're on Windows using the Win32 API...
MessageBox(NULL, L"It happened earlier\nDidn't it?", NULL, NULL);
|
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:44 PM |
| nop dev-c++ spit error at me |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
| |
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:47 PM |
5 Untitled1.cpp `MessageBox' undeclared (first use this function) (Each undeclared identifier is reported only once for each function it appears in.) |
|
|
| Report Abuse |
|
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
| |
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:51 PM |
| Untitled1.cpp cannot convert `const wchar_t*' to `const CHAR*' for argument `2' to `int MessageBoxA(HWND__*, const CHAR*, const CHAR*, UINT)' |
|
|
| Report Abuse |
|
|
aboy5643a
|
  |
| Joined: 20 Nov 2010 |
| Total Posts: 2785 |
|
|
| 06 Oct 2011 07:51 PM |
Lololol did he really forget to include the library lololololol faillll.... I'm sure he didn't even put #include < iostream >
"I like dooly-bops" -- ArceusInator |
|
|
| Report Abuse |
|
|
KingBoo
|
  |
| Joined: 16 Jul 2007 |
| Total Posts: 8495 |
|
|
| 06 Oct 2011 07:53 PM |
#include(iostream) #include(windows.h) using namespace std;
int main(){ MessageBox(NULL, L"It happened earlier\nDidn't it?", NULL, NULL); return 0; }
is what I have, ( replace ( with < and ) with >) |
|
|
| Report Abuse |
|
|
|
| 06 Oct 2011 07:54 PM |
| CPlawsPlaws = CSharp.Complexity ^ 8 |
|
|
| Report Abuse |
|
|
myrkos
|
  |
| Joined: 06 Sep 2010 |
| Total Posts: 8072 |
|
| |
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
| |
|