how to retrive image from sql to picturebox usinf image location

Solutions on MaxInterview for how to retrive image from sql to picturebox usinf image location by the best coders in the world

showing results for - "how to retrive image from sql to picturebox usinf image location"
Emely
30 Jul 2020
1            pictureBox1.SizeMode=System.Windows.Forms.PictureBoxSizeMode.StretchImage;
2
Sara
20 Oct 2017
1 
2 pictureBox1.Image = Image.FromFile("" + read["path"].ToString());
3 pictureBox1.SizeMode=System.Windows.Forms.PictureBoxSizeMode.StretchImage;
4
similar questions