Hello, I've posted a similar question in the Visual Basic Language forum, but in the end couldn't get an answer to this last part. I was able to get everything fax related working, but the one stopping point, the FaxServer object pops up a Print Dialog box for just HTML files. No user interaction is required for anything else. The console application I'm designing is required to operate without any user interaction. It runs on a server that no-one ever sees. It periodically checks the database for documents that need to be printed. It download the document from the web server and stores it in a local directory. It then runs a fax loop on each file. This works fine for text files, but I need to Fax HTML, and nothing else. Perhaps there's a 3rd party program besides IE that I could associate the fax function with that wouldn't require the hitting of an OK button If I sit there and hit OK, everything faxes fine. Some one on the other forum suggested a run another process in the background that watches for the print dialog and uses SendKeys to send the [ENTER] key to it. I can see that working, but to be honest, have no idea where to start in that respect. I know how to use SendKeys, but don't know how I would target another process, or even know when the Print Dialog has started.
Thanks for any help!

[Cross Post] Best way to bypass print dialog in a Faxing situation.