hi guys!
I m develping a project using VB.net..
May i now how to load pic into the mobile device
For example: when the user clicking at the combo box , the pic will be display out in thepictureBox control,which might change depends on what the user click..
Can anyone out there show me the code
Thanks in advance!!!!!!!!

load pic into mobile
rumen101010
Most common mistakes with paths would be an attempt to load files located on desktop hard drive (e.g. “C:\pictures\pic.jpg”) and attempt to use relative paths (e.g. “..\..\pic.jpg”). Device can't see your desktop hard drive and does not support relative paths.
Please make sure you have files located on device file system (which means you’ve done something to copy them to the device) and you’re specifying correct full path to these files.
Jasimons
Dim bmp As New Bitmap ("\full\path\to\bitmap\file.bmp")
pictureBox.Image = bmp
JosRyan