[Solved] Automate IE print dialog box without using SendKeys [closed]
[ad_1] It is, by using the InternetExplorer object’s ExecWB method (see this link for details). After adding a reference to the Microsoft Internet Controls library to your project, the following example should get you started: Option Explicit Sub PrintWebPage() Dim ie As InternetExplorer Set ie = New InternetExplorer ie.Navigate “http://www.google.com/” ie.Visible = 1 ‘Wait for … Read more