使用.NET程序打印MHT文档

发布于 2024-08-06 00:47:16 字数 130 浏览 4 评论 0原文

我们希望使用 .NET 和任何可用的 IE DLL 或任何其他文档查看器以编程方式打印 MHT 文档。我们还希望将此打印限制在文档的第一页。如果 MHT 文件中有多个框架,我们希望打印显示为网页中的样子。感谢对此的任何尝试。

谢谢

We would like to programmatically print MHT document using .NET and any available IE DLLs or any other document viewer. We also would like to limit this print to 1st page of the document. If there are multiple frames inside MHT file, we would like to the print to show as it appears in Web page. Appreciate any throughts around this.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤慢歌 2024-08-13 00:47:16

我们可以将 Universal Document Coverter 配置为默认打印机,并使用 IE 对象调用打印,如下面的代码所示。然而,具有多个帧的 MHT 文档最终会为每个帧生成多个图像。我们还需要将此打印限制为文档的第一页。感谢任何关于使用任何其他可用 IE DLL 的想法,这些 DLL 可用于避免多帧问题并将打印限制为文档的第一页。

using System;
using System.Collections.Generic;
using System.Text;
using SHDocVw;
using System.Threading;

namespace htmconverter
{
    class Program
    {
        static void Main(string[] args)
        {
            object missingValue = Type.Missing;
            InternetExplorer iexp = new InternetExplorer();
            iexp.Navigate("file://c:/c.mht", ref missingValue, ref missingValue, ref missingValue, ref missingValue);
            // while(OLECMDID.OLECMDID_PRINT!=OLECMDF.OLECMDF_SUPPORTED)
            iexp.ExecWB(OLECMDID.OLECMDID_PRINT, OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER, ref missingValue, ref missingValue);
            Thread.Sleep(2000);


        }
    }
}

We are able to configure Universal Document Coverter as default printer, and invoke a print using IE object as shown in below code. However, MHT documents having multiple frames is ending up generating multiple images for each frame. We also need to limit this print to 1st page of the document. Appreciate any thoughts on using any other IE DLLs available which can be used to avoid multiple frame issue and limiting the print to 1st page of the document.

using System;
using System.Collections.Generic;
using System.Text;
using SHDocVw;
using System.Threading;

namespace htmconverter
{
    class Program
    {
        static void Main(string[] args)
        {
            object missingValue = Type.Missing;
            InternetExplorer iexp = new InternetExplorer();
            iexp.Navigate("file://c:/c.mht", ref missingValue, ref missingValue, ref missingValue, ref missingValue);
            // while(OLECMDID.OLECMDID_PRINT!=OLECMDF.OLECMDF_SUPPORTED)
            iexp.ExecWB(OLECMDID.OLECMDID_PRINT, OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER, ref missingValue, ref missingValue);
            Thread.Sleep(2000);


        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文