InfoConnect VBA Guide
Attachmate.Reflection.Objects.Web.Msie Library / WebControl Object / PrintPage Method
Example
In This Topic
PrintPage Method
In This Topic
Prints the page.
Syntax
expression.PrintPage() 
where expression is a variable that represents a WebControl Object
Example
This sample prints a Web page.
Sub PrintWebPage()
       
    'print the page
    ThisWebControl.PrintPage
       
End Sub
See Also