• 大小: 0.03M
    文件类型: .cs
    金币: 2
    下载: 1 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: Word  Excel  c  

资源简介

大量文档打印前,统计word和Excel的页数

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;

using Excel = Microsoft.Office.Interop.Excel;
using Word = Microsoft.Office.Interop.Word;
using System.Runtime.InteropServices;
using System.Threading;
using Office = Microsoft.Office.Core;
using System.Reflection;

namespace QQTools
{
    public partial class FrmPagesStatistics : Form
    {
        private PageSizes m_PageSize;
        List> table = new List>();
        
        public delegate void RefreshStatusDelegate(string status int maximum int inc string progress);
        public delegate void ChangeButtonStateDelegate(Button owner bool state);
   

评论

共有 条评论