How can I display an image in an image control that I retrieve from a SQL database ?? The picture property only allows the path of the file name.
I tried
ImgCtrl1.Picture = rs("Photo").Getchunk
and it didnt work.
Printable View
How can I display an image in an image control that I retrieve from a SQL database ?? The picture property only allows the path of the file name.
I tried
ImgCtrl1.Picture = rs("Photo").Getchunk
and it didnt work.
picturecontrol.picture = loadpicture(filename alongwith path)
like
picture1.picture = loadpicture("c:\pictures\dog.bmp")