Hey All,
I'm trying to print my Web Form, as is no colour, no special font, just plan and simple as you see it on the screen.
I've used a few different codes all of which were giving different compiler messages, but the one below seems the simplest and is the one I'd like to use.
Code:
Private Sub Button3_Click
Form2.Print
End Sub
but I'm getting the following compiler error message, I've googled away and like I said before, tried different coding styles.
BC30451: Name 'Form2' is not declared
If I write Dim Form2 As New Form, before the Form2.Print
I get the error message below,
Compiler Error Message: BC30002: Type 'Form' is not defined.
any suggestions??