I keep getting an undeclared identifier (error C2065) whenever I change this:
wc.hIcon = LoadIcon(NULL,IDI_APPLICATION);
to this:
wc.hIcon = LoadIcon(NULL,IDI_ICON1);
I've created a resource.rc file that contains IDI_ICON1 and added it to my project, but I keep getting the same error over and over. It works fine with internal icons, but not with icons that I create. Anyone have any idea? Steve Kiehl
webmaster@nanovox.com
wc.hIcon = LoadIcon(NULL,IDI_APPLICATION);
to this:
wc.hIcon = LoadIcon(NULL,IDI_ICON1);
I've created a resource.rc file that contains IDI_ICON1 and added it to my project, but I keep getting the same error over and over. It works fine with internal icons, but not with icons that I create. Anyone have any idea? Steve Kiehl
webmaster@nanovox.com