I have an ActiveX control that I am hosting on my form via AxInterop. That ActiveX control has a print method that always launches the print dialog. However by the time the ActiveX control is launching the print dialog the user has already defined all their print preferences and settings in my application. So I want to bypass the dialog and have it go straight to the printer. Basically as soon as the print dialog appears I need to be able to simulate a click of the "Print" button. I'm guessing this is going to take some Win API calls, but I'm not really sure where to start. My app controls when the dialog is about to be launched (because it calls a method on the ActiveX), but since it is the ActiveX that actually launches the dialog I have no reference to it and I'm not sure where to go from there.
BTW, it is a windows forms application in C# .NET 3.5
Thanks in advance for any suggestions.
-- Nate