OK. In terms of your line of code that's failing, the `Visible` property of an `Image` object is a boolean - 1 for visible, 0 for invisible.
Going by http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx, what you want is something like
Image1.FromFile("filename")
or
Image1.FromStream
I can't provide more help than this, as it's not something I've done for, oh, 15 years or so...
↧