displaying image from sql ce

  • Thread starter Thread starter arujgeorge
  • Start date Start date
A

arujgeorge

hi
can u plz provide and idea or sample code for displaying image in vb
dot net application from sql ce database
 
The IBuySpyStore and PocketTaskVision sample apps on MSDN for
Compact Framework both contain examples of this. You'll GetBytes()
from your SqlCeDataReader on the column that contains your image
and then take that byte array and use it as the image property of a
PictureBox to display the signature.

The PictureBoxEx control in the Smart Device Framework is well suited to
make this even easier. www.opennetcf.org

--
Darren Shaffer
..NET Compact Framework MVP
Principal Architect
Connected Innovation
www.connectedinnovation.com
 
Back
Top