ByVal ev As PrintPageEventArgs)
هدا الكود لطباعة الصور الموجود مسارها في مربع النص كيف أخلي يطبع الصور الموجودة في مربع الصورة فورا بليز بدي رد سريع لأن ماعندي وقت للانتظار
PrivateSub PrintGraphic(ByVal sender AsObject, _
' Create the graphic using DrawImage
ev.Graphics.DrawImage(Image.FromFile(TextBox1.Text), _
ev.Graphics.VisibleClipBounds)
' Specify that this is the last page to print
ev.HasMorePages = False
EndSub