31-12-13, 12:51 AM
PHP كود :
Dim ofd As New OpenFileDialog
ofd.Filter = "Images files|*.jpg;*.gif;*.png;*.bmp|All files|*.*"
If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
Me.PictureBox1.Image = Image.FromFile(ofd.FileName)
Me.TextBox1.Text = ofd.FileName
End If
