picture from harddisk to PictureBox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have pictures as Jpeg file on harddisk
How can I load a picture from Harddisk in a PictureBox
I have the name of the picture in a textbox (databinding with a Database

Th

JoskeXP
 
* "=?Utf-8?B?Sm9za2VYUA==?= said:
I have pictures as Jpeg file on harddisk.
How can I load a picture from Harddisk in a PictureBox.
I have the name of the picture in a textbox (databinding with a Database)

\\\
Me.PictureBox1.Image = Image.FromFile(Me.TextBox1.Text)
///
 
Back
Top