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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top