11 lines
381 B
VB.net
11 lines
381 B
VB.net
Public Class Form26
|
|
Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click
|
|
Form2.PictureBox7.Image = PictureBox1.Image
|
|
Close()
|
|
End Sub
|
|
|
|
Private Sub PictureBox2_Click(sender As Object, e As EventArgs) Handles PictureBox2.Click
|
|
Form2.PictureBox7.Image = PictureBox2.Image
|
|
Close()
|
|
End Sub
|
|
End Class |