Hi,
I tried to print out a vb form. for that i followed the sample code..but instead of passing richtext box value i passed a string..in that string i append all the form variables what i've to print
for example,
VB Code:
  1. Dim a As String = Label1.Text & Label2.Text & textbox3.text & vbCrLf & _
  2.                             & Label4.Text & Label5.Text
Is there any other best way to print a vb form contents....Let me know thanks..