|
-
Aug 7th, 2001, 02:13 PM
#1
Thread Starter
Frenzied Member
assigning icons
how do i give my exe an icon when i compile through VC++... do i have to use code?? (BTW its not MFC its just a regular console mode application!!)
*
*
Government is another way to say better…than…you.
It’s like ice but no pick, a murder charge that won’t stick,
it’s like a whole other world where you can smell the food,
but you can’t touch the silverware.
Huh, what luck. Fascism you can vote for.
Humph, isn’t that sweet?
And we’re all gonna die some day, because that’s the American way
-Stone Sour
-
Aug 8th, 2001, 12:09 PM
#2
Go to File > New and add a Resource Script to your project. Then, go to File > New and add an Icon File. Now you can draw/manipulate your icon.
By default, the first icon you add will be the icon that your application will use.
-
Aug 8th, 2001, 03:10 PM
#3
Thread Starter
Frenzied Member
it didn't work, do i have to do anything to to resource script or anything??
Government is another way to say better…than…you.
It’s like ice but no pick, a murder charge that won’t stick,
it’s like a whole other world where you can smell the food,
but you can’t touch the silverware.
Huh, what luck. Fascism you can vote for.
Humph, isn’t that sweet?
And we’re all gonna die some day, because that’s the American way
-Stone Sour
-
Aug 8th, 2001, 03:13 PM
#4
Thread Starter
Frenzied Member
never mind, figured it out....
Government is another way to say better…than…you.
It’s like ice but no pick, a murder charge that won’t stick,
it’s like a whole other world where you can smell the food,
but you can’t touch the silverware.
Huh, what luck. Fascism you can vote for.
Humph, isn’t that sweet?
And we’re all gonna die some day, because that’s the American way
-Stone Sour
-
Aug 8th, 2001, 07:20 PM
#5
PowerPoster
How do I...
how do I make my vc++ app smaller in size and also it should take less time compiling the code.
-
Aug 11th, 2001, 01:17 AM
#6
Frenzied Member
I think if you use Windows Lean and Mean in your header file,
then the app will be smaller, not sure though.
I don't have the code with me, will get it later.
-
Aug 11th, 2001, 01:58 AM
#7
Monday Morning Lunatic
Make sure you compile as Release, and you can change the optimisation settings to Minimum Size rather than Maximum Speed.
Code:
#define WIN32_LEAN_AND_MEAN
is pretty useful, I always use it - it doesn't make your program much smaller, but it reduces compilation time (less to parse).
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Aug 11th, 2001, 10:19 AM
#8
PowerPoster
Thanks a lot Parskie!! No it takes only 1 second to compile the code
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|