Why are you using images like this? Use the in-built rich support of .Net
2.0.
Copy and paste your image (throbber_TB_still.gif) in the
Properties\Resources.resx file.
And then simply access it via :
Throbber.Image =
global::<ProjectName>.Properties.Resources.throbber_TB_still;
You can even create a Bitmap and then use it.
Hope this helps.
FUnky
> Hello,
>
[quoted text clipped - 40 lines]
>
> Mark
LordHog@hotmail.com - 28 Sep 2006 16:39 GMT
Funky,
Thanks for the information and this did indeed work. I initially
tried pasting the images into the resource file of the form that uses
the images, but that didn't work. I eventually figured out that the
images needed to be place into the project resources in order for it
see the global resources.
Why does this method work, but the initial path I took didn't? Is it
because the stream was closed after the method finished executing?
Mark
> Why are you using images like this? Use the in-built rich support of .Net
> 2.0.
[quoted text clipped - 54 lines]
> >
> > Mark