Is there a sample which make images as EXE file and can be play as slide show?

I heard there is a software which can package many images as a EXE file, when you launch
the EXE file, the images can be displayed one by one, just like slide show.
Could you give me a sample? thanks!

[216 byte] By [CUIWEI] at [2007-12-16]
# 1
Who know, thanks!
CUIWEI at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
It is trivial to piggyback data with an executable. You can attach any data at the end of a PE and it will be ignored by the PE loader.

So, in your case, you will want to invent your own data structure to store multiple images and then slap it at the back of your executable.

Your executable can then, using a hardcoded size, seek to the end of itself and start reading data; and display the pictures.

VijayeRaji at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 3
Could you give some sample code?
CUIWEI at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...