How to insert an image in a (*.MDB) database
Hi;
I use the Microsoft ACCESS database in my application and i dont know how to insert an image (*.GIF, *.BMP, *.JPG) in a table called IMAGEM.
Can i use the DATASET or DATAADAPTER???
To show the image in a Picture Box i need to use a DATASET???
To show an image in a form the Visual Studio uses the code below:
this.pctLogo.Image = ((System.Drawing.Bitmap)(resources.GetObject("pctL ogo.Image")));
But the code doesn´t work with a DataSet..
What can i do???
Thanks...
|