1.
EFNet #Winprog
#Winprog is the premier Windows Programming channel on the EFNet IRC network. The channel is comprised of professional software developers, talented college ...
2.
Win32 Tutorial - Free Visual C++ 2008
theForger's Win32 API Programming Tutorial. Home. Basics. Getting Started · A Simple Window · Handling Messages · The Message Loop · Using Resources ...
3.
Tutorial: Handling Messages
HINSTANCE hInstance = GetModuleHandle(NULL);. Now on to the second parameter, again turning to our trusty reference manual, we see that it is " a pointer to ...
4.
Tutorial: Handling Messages
If you aren't sure how to do it, look at the example zip file included with the section. GetModuleFileName(hInstance, szFileName, MAX_PATH); MessageBox(hwnd ...
5.
theForger's Win32 API Tutorial
Welcome to theForger's Win32 API Tutorial. This tutorial attempts to get you started developing with the Win32 API as quickly and clearly as possible. ...
6.
theForger's Win32 API Tutorial
Welcome to theForger's Win32 API Tutorial. This tutorial attempts to get you started developing with the Win32 API as quickly and clearly as possible. ...
7.
EFNet #Winprog
Our primary focus is: C/C++ Programming with the Win32 API or MFC. ... If you are new to Win32, read the Tutorial from start to finish; Check the FAQ to see ...
8.
theForger's Win32 API Tutorial
Welcome to theForger's Win32 API Tutorial. This tutorial attempts to get you started developing with the Win32 API as quickly and clearly as possible. ...
9.
Tutorial: Menus and Icons
"Error", MB_OK | MB_ICONERROR); hIconSm = LoadImage(NULL, "menu_two.ico", IMAGE_ICON, 16, 16, LR_LOADFROMFILE); if(hIconSm) SendMessage(hwnd, WM_SETICON, ...
10.
Win32 Tutorial - Solutions to Common Errors
Error LNK2001: unresolved external symbol _main. An unresolved external occurs when some code has a call to a function in another module and the linker ...