Hi, there is a link, that solves your problem.
It is Windows IE only, and I tryed it in my IE5.5:
http://www.faqts.com/knowledge_base/view.phtml/aid/9169 This is the code I tryed:
<SCRIPT LANGUAGE="JAVASCRIPT">
function ieExecWB( intOLEcmd, intOLEparam )
{
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
if ( ( ! intOLEparam ) || ( intOLEparam < -1 ) || (
intOLEparam > 1 ) )
intOLEparam = 1;
WebBrowser1.ExecWB( intOLEcmd, intOLEparam );
WebBrowser1.outerHTML = "";
}
</script>
<button on_Click="ieExecWB(6, -1)">
Print Me! - No Prompt!
</button>