Window Images in eclipse product not shown

eclipse, java, plugin.xml, product, window

Solution

You have to make sure that the images are actually in the specified folder and that they are included in the bin.include path of the build.properties file.

Problem

I have defined all images from 16x16 px - 128x128 px (32 bit) in my eclipse product. They are being written into the plugin.xml of my UI ``` <property name="windowImages" value="icons/16_32.gif,icons/32_32.gif,icons/48_32.gif,icons/64_32.gif,icons/128_32.gif"> </property> ``` I now run the export wizard to create a executable. When i start the exe, the application shows a only a coloured red square icon both in explorer and alt+tab instead of my defined (and in build path exported) window images. I have already tried using .png and .bmp instead, but it didn't work Anyone already had the same issue?

Original source