Results 1 to 3 of 3

Thread: Package Icons in EXE

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Location
    Atlanta, GA
    Posts
    80

    Question

    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

  2. #2
    Guest
    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")

  3. #3
    Guest
    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
  •  



Click Here to Expand Forum to Full Width