chpicker
Programmer
- Apr 10, 2001
- 1,316
Is there a way to attach an icon to a simple Win32 Console app?
I created a new project based on Win32 Console and told it to create an Empty Project. I created a single source file, "hello.cpp":
[tt]
#include <iostream.h>
int main(void)
{
cout << "Hello!\n";
return 0;
}
[/tt]
How would I attach an icon to the executable when I compile this?
Thanks,
Ian
I created a new project based on Win32 Console and told it to create an Empty Project. I created a single source file, "hello.cpp":
[tt]
#include <iostream.h>
int main(void)
{
cout << "Hello!\n";
return 0;
}
[/tt]
How would I attach an icon to the executable when I compile this?
Thanks,
Ian