我真的很困惑这部分。我可以用图片框保存5张图片,但只保存图片所在的文件路径。现在我真的很困惑,也要在图片框中显示5张图片并进行打印。任何人都可以通过任何代码帮助我吗?我只需要代码来显示我的图片到图片框,但是带有文件路径并打印它们。请帮助我:(我尝试使用此代码,但我不知道如何将图片检索到图片框
Private Sub search_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles search.Click
command.Connection = con
command = New OleDbCommand("Select * from datagambar Where NoFaktur = '" & nofaktur.Text & "'")
datareader = command.ExecuteReader
datareader.Read()
If datareader.HasRows Then
PictureBox1.ImageLocation = datareader.Item("FakturInvoice") 'untuk mencari lokasi gambar pada direktori
PictureBox2.ImageLocation = datareader.Item("SPB&BAPP")
PictureBox3.ImageLocation = datareader.Item("PurchaseOrder")
PictureBox4.ImageLocation = datareader.Item("TandaTerimaInvoice")
PictureBox5.ImageLocation = datareader.Item("FakturPajak")
Else
MsgBox("There's No Image For NoFaktur '" & nofaktur.Text & "'")
End If