Hi, I have vb.net application.
In the form I have print button and when I do print, after printing the form is closed. so I have to reopen the form.
I tried much, but I am not able solve the problem.
Please help me.
I put following code in print click event
Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click
PrintDocument1.Print()
End Sub