`
tiwson
  • 浏览: 333008 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

打印页面 页面设置 打印预览 好东东--WebBrowser.ExecWB的完整说明

阅读更多
打印页面 页面设置 打印预览 好东东--WebBrowser.ExecWB的完整说明
转自:http://hi.baidu.com/kaisep/blog/item/2bddecde86104b5e95ee3752.html


<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<input name=Button .Click=document.all.WebBrowser.ExecWB(1,1) type=button value=打开>
<input name=Button .Click=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有>
<input name=Button .Click=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为>
<input name=Button .Click=document.all.WebBrowser.ExecWB(6,1) type=button value=打印>
<input name=Button .Click=document.all.WebBrowser.ExecWB(6,6) type=button value=直接打印>
<input name=Button .Click=document.all.WebBrowser.ExecWB(7,1) type=button value=打印预览>
<input name=Button .Click=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置>
<input name=Button .Click=document.all.WebBrowser.ExecWB(10,1) type=button value=属性>
<input name=Button .Click=document.all.WebBrowser.ExecWB(17,1) type=button value=全选>
<input name=Button .Click=document.all.WebBrowser.ExecWB(22,1) type=button value=刷新>
<input name=Button .Click=document.all.WebBrowser.ExecWB(45,1) type=button value=关闭>
WebBrowser组件的execWB方法1. <object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>2. 调用方法:WebBrowser.ExecWB nCmdID, nCmdExecOpt, [pvaIn], [pvaOut]3. 参数说明:(a).nCmdID OLECMDID_OPEN = 1, OLECMDID_NEW = 2, OLECMDID_SAVE = 3, OLECMDID_SAVEAS = 4, OLECMDID_SAVECOPYAS = 5, OLECMDID_PRINT = 6, OLECMDID_PRINTPREVIEW = 7, OLECMDID_PAGESETUP = 8, OLECMDID_SPELL = 9, OLECMDID_PROPERTIES = 10, OLECMDID_CUT = 11, OLECMDID_COPY = 12, OLECMDID_PASTE = 13, OLECMDID_PASTESPECIAL = 14, OLECMDID_UNDO = 15, OLECMDID_REDO = 16, OLECMDID_selectALL = 17, OLECMDID_CLEARselectION = 18, OLECMDID_ZOOM = 19, OLECMDID_GETZOOMRANGE = 20 OLECMDID_updateCOMMANDS = 21 OLECMDID_REFRESH = 22 OLECMDID_STOP = 23 OLECMDID_HIDETOOLBARS = 24 OLECMDID_SETPROGRESSMAX = 25 OLECMDID_SETPROGRESSPOS = 26 OLECMDID_SETPROGRESSTEXT = 27 OLECMDID_SETTITLE = 28 OLECMDID_SETDOWNLOADSTATE = 29 OLECMDID_STOPDOWNLOAD = 30 上面的关键词都可以在浏览器的菜单里面找到对应的选项﹐大家一看就明白的﹗ (b).nCmdExecOpt OLECMDEXECOPT_DODEFAULT = 0, OLECMDEXECOPT_PROMPTUSER = 1, LECMDEXECOPT_DONTPROMPTUSER = 2, OLECMDEXECOPT_SHOWHELP = 3 对于这个参数﹐一般来说﹐选1就可以了。4.常用:WebBrowser.ExecWB(1,1) 打开WebBrowser.ExecWB(2,1) 关闭现在所有的IE窗口,并打开一个新窗口WebBrowser.ExecWB(4,1) 保存网页WebBrowser.ExecWB(6,1) 打印WebBrowser.ExecWB(7,1) 打印预览WebBrowser.ExecWB(8,1) 打印页面设置WebBrowser.ExecWB(10,1) 查看页面属性WebBrowser.ExecWB(15,1) 好像是撤销,有待确认WebBrowser.ExecWB(17,1) 全选WebBrowser.ExecWB(22,1) 刷新WebBrowser.ExecWB(45,1) 关闭窗体无提示5.示例﹕(a)调用IE的”另存为”功能的示例﹕<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object><A href=".:WebBrowser.ExecWB(4,1);">Save-存储</A>(b)经过改写的登陆模式<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object><body onload="showModalDialog('Untitled-1.html',0,'Status:NO;dialogWidth:418px;dialogHeight:288px');document.all.WebBrowser.ExecWB(45,1);"><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT> <input name=Button .Click=document.all.WebBrowser.ExecWB(1,1) type=button value=打开><input name=Button .Click=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有><input name=Button .Click=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为> <input name=Button .Click=document.all.WebBrowser.ExecWB(6,1) type=button value=打印><input name=Button .Click=document.all.WebBrowser.ExecWB(6,6) type=button value=直接打印><input name=Button .Click=document.all.WebBrowser.ExecWB(7,1) type=button value=打印预览><input name=Button .Click=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置><input name=Button .Click=document.all.WebBrowser.ExecWB(10,1) type=button value=属性><input name=Button .Click=document.all.WebBrowser.ExecWB(17,1) type=button value=全选><input name=Button .Click=document.all.WebBrowser.ExecWB(22,1) type=button value=刷新><input name=Button .Click=document.all.WebBrowser.ExecWB(45,1) type=button value=关闭>
================================
完整演示实例:
<html>
<head>
<meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
<title>打印</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<!--media=print 这个属性可以在打印时有效-->
<style media=print>
.Noprint{display:none;}
.PageNext{page-break-after: always;}
</style>
<style>
.tdp
{
border-bottom: 1 solid #000000;
border-left: 1 solid #000000;
border-right: 0 solid #ffffff;
border-top: 0 solid #ffffff;
}
.tabp
{
border-color: #000000 #000000 #000000 #000000;
border-style: solid;
border-top-width: 2px;
border-right-width: 2px;
border-bottom-width: 1px;
border-left-width: 1px;
}
.NOPRINT {
font-family: "宋体";
font-size: 9pt;
}
</style>
</head>
<body >
<center class="Noprint" >
<p>
<OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0>
</OBJECT>
<!--
在不是js打开的页面上按window.close(), 会有提示框,很烦,现在可以不用了,没有提示框直接关闭窗口。
试试下面代码:
<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">
</object>
<input type="button" name="Button" value="关闭窗口" onClick="document.all.WebBrowser.ExecWB(45,1)">
试着改变参数会得到其他一些功能:
WebBrowser.ExecWB(1,1) 打开
WebBrowser.ExecWB(2,1) 关闭现在所有的IE窗口,并打开一个新窗口
WebBrowser.ExecWB(4,1) 保存网页
WebBrowser.ExecWB(6,1) 打印
WebBrowser.ExecWB(7,1) 打印预览
WebBrowser.ExecWB(8,1) 打印页面设置
WebBrowser.ExecWB(10,1) 查看页面属性
WebBrowser.ExecWB(15,1) 好像是撤销,有待确认
WebBrowser.ExecWB(17,1) 全选
WebBrowser.ExecWB(22,1) 刷新
WebBrowser.ExecWB(45,1) 关闭窗体无提示
这些只对IE5.5以上版本有效,我是在IE6下测试的,通过的。
--><body><input type=button value=打开 onclick=document.all.WebBrowser.ExecWB(1,1)>
<input type=button value=关闭现在所有的IE窗口并打开一个新窗口 onclick=document.all.WebBrowser.ExecWB(3,1)>
<input type=button value=网页另存为 onclick=document.all.WebBrowser.ExecWB(4,1)>
<input type=button value=查看页面属性 onclick=document.all.WebBrowser.ExecWB(10,1)>
<input type=button value=全选 onclick=document.all.WebBrowser.ExecWB(17,1)>
<input type=button value=刷新 onclick=document.all.WebBrowser.ExecWB(22,1)>
<input type=button value=关闭窗体无提示 onclick=document.all.WebBrowser.ExecWB(45,1)><input type=button value=打印 onclick=document.all.WebBrowser.ExecWB(6,1) >
<input type=button value=直接打印 onclick=document.all.WebBrowser.ExecWB(6,6)>
<input type=button value=打印预览 onclick=document.all.WebBrowser.ExecWB(7,1)>
<input type=button value=页面设置 onclick=document.all.WebBrowser.ExecWB(8,1)><br/>
</p>
<hr align="center" width="90%" size="1" noshade>
</center>
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="0" class="tabp">
<tr>
<td colspan="3" class="tdp">第1页</td>
</tr>
<tr>
<td width="29%" class="tdp"> </td>
<td width="28%" class="tdp"> </td>
<td width="43%" class="tdp"> </td>
</tr>
<tr>
<td colspan="3" class="tdp"> </td>
</tr>
<tr>
<td colspan="3" class="tdp"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" class="tdp"><p>这样的报表</p>
<p>对一般的要求就够了。</p></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<hr align="center" width="90%" size="1" noshade class="NOPRINT" >
<!--分页-->
<div class="PageNext"></div>
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="0" class="tabp">
<tr>
<td class="tdp">第2页</td>
</tr>
<tr>
<td class="tdp">看到分页了吧</td>
</tr>
<tr>
<td class="tdp"> </td>
</tr>
<tr>
<td class="tdp"> </td>
</tr>
<tr>
<td class="tdp"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" class="tdp"><p>这样的报表</p>
<p>对一般的要求就够了。</p></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html> 

分享到:
评论

相关推荐

    iewebbrowser组件的execwb方法

    `WebBrowser.ExecWB`是`iewebbrowser`组件中的一个重要方法,用于模拟用户在浏览器中的各种操作行为,如打开新页面、保存页面等。该方法提供了一种简便的方式来执行常见的浏览器命令,使得开发者无需深入了解底层API...

    为ASP网站提供多种打印方案的ASP代码集

    - `WebBrowser.ExecWB(1, 1)`:打开一个新的页面 - `WebBrowser.ExecWB(2, 1)`:关闭所有IE窗口并打开新的窗口 - `WebBrowser.ExecWB(4, 1)`:保存当前网页 - `WebBrowser.ExecWB(6, 1)`:打印 - `WebBrowser....

    网页WB_ExecWB控件打印方法

    - `wb.execwb(8,1)` 或 `wb.execwb(8,2)`:这些方法允许用户调整打印的页面设置,如纸张大小、方向等。 4. **保存网页**: - `wb.execwb(4,1)` 和 `wb.execwb(4,2)`:这两个方法用于保存网页到本地。`4,1`直接...

    网页WB.ExecWB控件打印方法调用说明及参数介绍

    网页编程中,WB.ExecWB是一个经常被提及的方法,它属于WebBrowser控件(即Internet Explorer控件)的一部分。通过调用WB.ExecWB,开发者可以在网页上执行一系列与浏览器相关的功能,如打印、保存网页、页面设置等。...

    jsp页面如何实现web打印

    document.all.WebBrowser.ExecWB(8,1) 页面设置 document.all.WebBrowser.ExecWB(7,1) 打印预览 3 隐藏不打印的页面元素和分页 CSS 有个Media 属性,可以分开设置打印和显示的格式。 如 &lt;style media="print...

    VS.NET桌面程序集成EO.WebBrowser.WebView组件,免弹框版

    在VS.NET桌面程序中引入Web控件,实现在.NET桌面程序中集成h5页面,并呈现良好的显示效果。去除了EO.WebBrowser.WebView第一次加载时弹框的问题,并且保证视频在EO.WebBrowser.WebView中的正常播放

    EO.WebBrowser(v23.4.26)

    EO.WebBrowser最新版本(v23.4.26)免安装dll.C# 直接引用版本。 EO.WebBrowser,就是给.NET用的Chrome浏览器内核,可以在WinForm中嵌入Chrome浏览器,客户端不用安装浏览器都可以。 无缝集成chrome浏览器引擎和.net...

    EO.WebBrowser for .NET 16.2.37

    NuGet Gallery | EO.WebBrowser for .NET 16.2.37 https://www.nuget.org/packages/EO.WebBrowser/ 出自 .NET Google 浏览器内核 Eo.Webbrowser | Flyヽ Blog http://lfei.org/net-eo-webbrowser/

    Jsp页面中实现打印打印预览及打印设置

    本文将基于提供的示例代码来详细介绍如何在 JSP 页面中实现打印、打印预览以及打印设置等功能。 #### 一、HTML 控件的使用 在 HTML 中,可以通过内嵌 ActiveX 控件的方式实现页面打印功能。下面的代码片段展示了...

    EO.WebBrowser免安装dll.C# VB直接饮用版本,你懂得

    EO.WebBrowser免安装dll.C# VB直接饮用版本,你懂得

    EO.WebBrowser帮助文档,一款谷歌内核的WebBrowser

    c# 桌面应用 WebBrowser 是IE浏览器内核,目前很多网站不支持了,从国外网站找到一个 谷歌内核的WebBrowser 名字叫 EO.WebBrowser ,比较好用,本文档是他的帮助文档。

    html调用打印实现打印

    html调用打印实现打印 &lt;input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=...&lt;input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印&gt;

    ExecWB的完整说明

    ### ExecWB的完整说明 #### 一、概述 在网页开发和自动化测试领域,`ExecWB` 是一个非常有用的函数,它允许开发者通过脚本控制IE浏览器执行一系列操作,如打开网页、保存页面、打印等。`ExecWB` 主要用于 ...

    js调用ie打印和预览功能

    打印预览" onclick='document.all.WebBrowser.ExecWB(7,1)' /&gt; function dayin() { if (window.confirm("确认打印?")) { // 隐藏不需要打印的部分 $("#list_table_1 tr:last-child").css("display", "none")...

    javascript打印如何自定义纸张大小(代码)[借鉴].pdf

    WebBrowser.ExecWB(8, 1) // 打印页面设置 ``` 三、解决页脚和页眉的问题 使用 JavaScript 可以实现页脚和页眉的设置。 ```javascript var hkey_root, hkey_path, hkey_key; hkey_root = "HKEY_CURRENT_USER"; ...

    VB程序实例-使用WebBrowser控件浏览网页.zip

    VB程序实例-使用WebBrowser控件浏览网页.zip

    WPF-进阶视频教程(共113集)-061WebBrowser控件.mp4

    WPF-进阶视频教程(共113集)-061WebBrowser控件.mp4

    利用WebBrowser彻底解决Web打印问题(包括后台打印)

    - **页面设置和打印预览**:WebBrowser控件提供了`ExecWB`方法来执行各种浏览器命令。例如,要调出页面设置,可以使用: ```javascript document.all.WebBrowser.ExecWB(7, 1); ``` - **直接打印**:直接调用...

    计算机软件-商业源码-利用WebBrowser.Control实现程序界面与实现的分离.zip

    本商业源码包“利用WebBrowser.Control实现程序界面与实现的分离”提供了一种具体实现这一目标的方法。WebBrowser.Control是.NET Framework中内置的一个控件,它允许开发者在Windows应用程序中嵌入Web浏览器的功能。...

Global site tag (gtag.js) - Google Analytics