|
-
Aug 23rd, 2000, 04:59 PM
#1
Thread Starter
Lively Member
Dumb question, I know... But...
When I compile an EXE, are my icons (form icons, toolbar icons, etc) included within the exe? Or will I need to distribute them through a resource file?
Thanks,
Kevin
VB 6.0 w/SP4
-
Aug 23rd, 2000, 05:42 PM
#2
They are put in the EXE already. There is no need to distribute them. The only reason why some people distribute a bunch of bmp files with there program in a folder is because putting pictures, icons, etc. in your program will take up space (file size, resources?). So they have them seperately so they do something like (referring to VB programming):
Code:
Picture1.Picture = LoadPicture(App.Path & "\graphics\pic1.bmp")
-
Aug 23rd, 2000, 05:55 PM
#3
Resource files are distributed within the EXE as well so if you want to distribute them seperatly, I suggest you put them in a ZIP file.
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
|