> Thats a really dumb idea. If you want to program like
> that learn basic
That's a really dumb response. There are tons of reasons for doing what he wants to do.
I'm curious: hwo would you go about doing this in VB? It is certainly not a trivial thing to do, in fact, it is easier to do in Visual C++...
> Sorry for the poorly written request. What i wanted
> to know was if it was possible to include a gif inside
> a *.java file
I did something like this in a DOS program a very long time ago.
Basically you could write a program to read a GIF file, create a java class, and put the GIF data into a byte array. This way you have a single file that includes the binary info of the GIF without making the GIF a separate file.
You would also need to write some code to display the GIF from the byte array.