load image with picturebox

  • Thread starter Thread starter Dante
  • Start date Start date
D

Dante

why can't i load an image in my picture box. It works with
the emulator, but not on my device.

in vb.net i do:
pic.image = new bitmap("\pic.jpg")
 
Make sure that you have this picture file on your device in the root of the
file system.
 
For the device to be able to load jpgs it is necessary that it has
(optional) imgdecmp.dll. If your device does not have this dll, it won't be
able to load jpg (and other compressed image) files
 
Back
Top