Hello
Here is my code;
CODE
#include <windows.h>
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
/* Make the class name into a global variable */
char szClassName[ ] = "WindowsApp";
int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
{
ShellExecute(
NULL, // No associated window
"open", // Command to run
"index.htm", // Document on which to run command
NULL, // Not an exe file, so no other parameters
NULL, // Current working directory
SW_SHOWNORMAL);
return 0;
}
I have a psd file I made... for the icon. So I can save it into most other image formats.
It's a square image (so don't need transparency or whatever).
Please tell me how to do this!
Thanks in advance,
Panarchy