<HTML>
<HEAD>
<TITLE>HISOAP - Web Technique [ 印刷ダイアログの表示 ]</TITLE>
<SCRIPT language="JavaScript">
<!--
ver = navigator.appVersion.split(' ');
app = navigator.appName;
isNN4 = (app=="Netscape" && ver[0]>=4);
isIE4 = (app=="Microsoft Internet Explorer" && ver[3].charAt(0)==4);
isIE5 = (app=="Microsoft Internet Explorer" && ver[3].charAt(0)>=5);
function printing() {
if(isNN4 | isIE5){
this.window.print();
}else if(isIE4){
var OLECMDID_PRINT = 6;
var OLECMDEXECOPT_DONTPROMPTUSER = 2;
var OLECMDEXECOPT_PROMPTUSER = 1;
wbrowser2.ExecWB(OLECMDID_PRINT,OLECMDEXECOPT_PROMPTUSER);
wbrowser2.outerHTML = "";
}else{
alert('このブラウザでは印刷は出来ません。最新のブラウザを使用してください!');
}
}
// -->
</SCRIPT>
</HEAD>
<BODY>
<FORM>
<INPUT TYPE="button" VALUE="サンプル1" onClick="printing()">
</FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
ver = navigator.appVersion.split(' ');
app = navigator.appName;
isIE4 = (app=="Microsoft Internet Explorer" && ver[3].charAt(0)==4);
if(isIE4){
document.write("<OBJECT ID='wbrowser2' WIDTH=0 HEIGHT=0 CLASSID='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'>");
document.write("<PARAM NAME='ExtentX' VALUE='0'>");
document.write("<PARAM NAME='ExtentY' VALUE='0'>");
document.write("<PARAM NAME='ViewMode' VALUE='1'>");
document.write("<PARAM NAME='Offline' VALUE='0'>");
document.write("<PARAM NAME='Silent' VALUE='1'>");
document.write("<PARAM NAME='RegisterAsBrowser' VALUE='0'>");
document.write("<PARAM NAME='RegisterAsDropTarget' VALUE='1'>");
document.write("<PARAM NAME='AutoArrange' VALUE='1'>");
document.write("<PARAM NAME='NoClientEdge' VALUE='1'>");
document.write("<PARAM NAME='AlignLeft' VALUE='0'>");
document.write("</OBJECT>");
}
//-->
</SCRIPT>
</BODY>
</HTML>
|