exception

  • Thread starter Thread starter Erwin Zwart
  • Start date Start date
E

Erwin Zwart

As i am i dummy user trying to debug a dummy application i've got a
exception thrown at a very basic piece of code:

public static Image LoadImage( string Filename )
{
try
{
Image img = new Bitmap( Filename );
return img;
}
catch { }

return null;
}

"A first chance exception of type 'System.InvalidCastException' occurred in
System.Drawing.dll" is thrown at
Image = img new Bitmap( Filename) where filename is a string which indicates
the picturename and path. thi

Seems good code to me,
I also tried it with a bitmap and also tried to cast it to an Image object,
but same exception.

I am targeting a I-mate Windows Mobile5 device,

Is this normal behaviour?!?


Many thanks in advance,

Eddy
 
Back
Top