Most users still print lots of e-mails. If your users are working in iNotes, they have no clue how many pages will come out. The solution: Change the Print button to a Print Preview button. Here's the code:
adapt the Forms6.nsf, subform s_printUI_IE :
change win.print() into :
var OLECMDID = 7;
var PROMPT = 1;
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 = "";
//oWin.print();
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip exchange by member Ignace Quaghebeur. Please let others know how useful it is via the rating scale below. Do you have a useful Notes/Domino tip or code to share? Submit it to our bimonthly tip contest and you could win a prize and a spot in our Hall of Fame.