- ตัวอย่าง Javascript 1 : http://jsfiddle.net/LEzkq/embedded/result/
- ตัวอย่าง Javascript 2 :http://jsfiddle.net/QFmTQ/embedded/result/
การเขียนโปรแกรมแบบ GUI ต้องใช้อย่างน้อย
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<windows.h> | |
int _stdcall WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance, | |
LPSTR lpszCmdLine, int nCmdShow) | |
{ | |
MessageBox ( 0, "Hello simple GUI", "Waiting", MB_OK ) ; | |
return 0 ; | |
} |