Forum Moderators: open
Thanks
So the question is, is it possible to specifically target the center frame for previewing, or to add the option to pick the frame to the preview window like in 6.0?
The coding is below
function printpr()
{
var OLECMDID = 7;
/* OLECMDID values:
* 6 - print
* 7 - print preview
* 1 - open window
* 4 - Save As
*/
var PROMPT = 1; // 2 DONTPROMPTUSER
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(OLECMDID, PROMPT);
WebBrowser1.outerHTML = "";
}
<a href="javascript:;" onClick="parent.main.focus();printpr()">
<img src="printpreview.gif" border="0" width="129" height="35"></a>