Hi !
I am trying to print some results to a printer.
I used the printDocument and printDialog1con trols. I can open the print dialog buta my problem is that i can insert my results to be printed.
Dim dlgresult As DialogResult = Me.PrintDialog1 .ShowDialog()
If dlgresult = Windows.Forms.D ialogResult.OK Then
Me.PrintDialog1 .Document1.Prin t()
End if
The bold phrase is not working. My question is how to insert the results into the document1 in order to be printed. My results is an arrays of strings which contains passes and fails. The results are printed in a flex grid.
Can anyone help
thanks
I am trying to print some results to a printer.
I used the printDocument and printDialog1con trols. I can open the print dialog buta my problem is that i can insert my results to be printed.
Dim dlgresult As DialogResult = Me.PrintDialog1 .ShowDialog()
If dlgresult = Windows.Forms.D ialogResult.OK Then
Me.PrintDialog1 .Document1.Prin t()
End if
The bold phrase is not working. My question is how to insert the results into the document1 in order to be printed. My results is an arrays of strings which contains passes and fails. The results are printed in a flex grid.
Can anyone help
thanks
Comment