Hello
This code don't affich the image
pictureBox1->Image->FromFile("c:\\image.jpg");
c:\image.jpg exists.
Please, can you help me?
Thanks
Tamas Demjen - 27 May 2005 01:40 GMT
> Hello
> This code don't affich the image
[quoted text clipped - 5 lines]
>
> Thanks
FromFile is a static method and returns an image. So you're supposed to
call it like this:
pictureBox1->Image = System::Drawing::Image::FomFile("c:\\image.jpg");
Tom