Quote Originally Posted by Hack
Have you considered using a Resource File for storing your images?
I forgot about that one!

To Add the Resource Editor to VB use the Add-Ins Menu.
Once you have selected it in the Add In Manager dialog Box, you can find the Resource Editor on the Standard Toolbar.

When you have added all the pictures, you can use something like:
Example:
Set Img1.Picture = LoadResPicture(101, vbResBitmap)

Where 101 is the Resource ID and vbResBitmap is the type of bitmap.

Hannes