I have a module that successfully opens IE and brings up the desired web page. What I need to do now is print the page to the default printer and close IE from within the module. The user never even needs to see the page on the screen.
The pertinent lines:
The pertinent lines:
Code:
Set IE = CreateObject("internetexplorer.application")
With IE
.Navigate strURL (where strURL = the page's url)
rem put print here
rem close IE