含有打印、统计DataGridView(1)

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing.Printing;
using System.Drawing;
using System.Windows.Forms;
using System.Windows;
using System.Data;
using Microsoft.Office;
namespace KingBoy
{
    class MyDataGrid:DataGridView
    {
        #region var
        //用户可自定义 
        private Font tableFont=new Font("宋体", 9);  // ‘当前要打印文本的字体及字号 
        private Font headFont=new Font("黑体", 12, FontStyle.Regular);//表头字体 
        private Font subHeadFont=new Font("楷体_GB2312", 10, FontStyle.Regular); //副表头字体 
        private String headText="" ; //表头文字 
        private String subHeadLeftText="";  //副表头左文字
        private String subHeadRightText="";  //副表头右文字 
        private int headHeight=40;  //表头高度 
        private int subHeadHeight=30;  //副表头高度 
        private Font footFont=new Font("黑体", 12, FontStyle.Underline); //表脚字体
        private Font subFootFont=new Font("楷体_GB2312", 10, FontStyle.Regular);//副表脚字体 
        private String footText=""; ////表脚文字 
        private String subFootLeftText="" ;  //副表脚左文字 
        private String subFootRightText="" ;  //副表脚右文字
        private int footHeight=40; //表脚高度
        private int subFootHeight=30;  //副表脚高度 
        private String worker="";  //‘制表人
        private double sum=0; //汇总数据
        private int x_unit=0; //表的基本单位
        private int y_unit= 24;

//以下为模块内部使用      
        private PrintDocument printDocument1;     
        private DataRow dataGridRow;
        private DataTable dataTable1;
        private int Cols; //                          ‘当前要打印的列                          
        private int ColsCount; //                    ‘当前DATAGRID共有多少列       
        private int pageRecordNumber; //                 ‘当前要所要打印的记录行数,由计算得到. 
        private int printingPageNumber=0;//           ‘正要打印的页号 
        private int pageNumber;//                       ‘共需要打印的页数
        private int printRecordLeave;//                 ‘当前还有多少页没有打印 
        private int printRecordComplete=0;  //        ‘已经打印完的记录数 
        private int pLeft,pTop,pRight,pBottom,pWidth,pHeight;
        private SolidBrush drawBrush = new SolidBrush(System.Drawing.Color.Black);//   ‘当前画笔颜色 
        private int pRecordNumber=0  ;//‘每页打印的记录条数 
        private int totalPage;  //总共应该打印的页数        
        #endregion
        #region property
         
        /// <summary>
        ///用户自定义字体及字号
        /// </summary>
        public Font setTableFont
        {
         set{tableFont=value;}
        }
        /// <summary>
        /// 设置表头字体
        /// </summary>
       public Font setHeadFont
       {
        set{headFont =value;}
       }
        public Font setFootFont
        {
         set{footFont=value;}
        }
       public Font setSubFootFont
       {
        set{subFootFont =value;}
       }
      public string setHeadText
      {
       set{headText =value;}
      }
      public string setSubHeadLeftText
      {
        set{subHeadLeftText =value;}
      }
        public string setSubHeadRightText
        {
         set{subHeadRightText =value;}
        }
       public string setFootText
       {
         set{footText =value;}
       }

public string setSubFootLeftText
       {
         set{subFootLeftText =value;}
       }
       public string setSubFootRightText
       {
         set{subFootRightText =value;}
       }
       public int setHeadHeight
       {
        set{headHeight =value;}
       }
public int setSubHeadHeight
{
 set{
   subHeadHeight =value;
 }
}
        public int setFootHeight
        {
         set{footHeight =value;}
        }
       public int setSubFootHeight
       {
         set{subFootHeight =value;}
       }
        public int setCellHeight
        {
          set{y_unit =value;}
        }
        /// <summary>
        /// 汇总数据
        /// </summary>
        public double setSum
        {
         set{sum=value;}
        }
        /// <summary>
        /// 设置制表人
        /// </summary>
      public string setWorker
      {
       set{worker =value;}
      }
       
        #endregion
        #region method
        /// <summary>
        /// 根据列明统计该列值总和
        /// </summary>
        /// <param name="colomnName">列明</param>
        /// <returns>如果该列明是数值型,则返回统计结果,否则返回0</returns>
        public double addColumnDGV(string colomnName)
        {
          try
          {
              int i=0; //循环下标
              double sum=0;//用来保存统计临时结果
              for(i=0;i<this.Rows.Count ;i++)
                  try
                  { sum=sum+Convert.ToDouble(this.Rows[i].Cells[colomnName].Value); }//获取i行colomnName列值
                  catch (Exception)
                  { }                  
              return sum;
          }
            catch(Exception )
          {
            return 0;
            }
        }
        public double addColumnDGV(string colomnName,char ch)
        {
            try
            {
                int i = 0; //循环下标
                double sum = 0;//用来保存统计临时结果
                for (i = 0; i < this.Rows.Count; i++)
                    try
                    { sum = sum + Convert.ToDouble(this.Rows[i].Cells[colomnName].Value.ToString().Substring(1, this.Rows[i].Cells[colomnName].Value.ToString().Length-1)); }//获取i行colomnName列值
                    catch (Exception)
                    { }
                return sum;
            }
            catch (Exception)
            {
                return 0;
            }
        }
        /// <summary>
        /// 统计某行从intStartCol列到intEndCol和
        /// </summary>
        /// <param name="row">行值</param>
        /// <param name="intStartCol">起始列索引值</param>
        /// <param name="intEndCol">终止列索引值</param>
        /// <returns>合法统计结果,非法返回0</returns>
        public double addRowDGV(int row,int intStartCol,int intEndCol)
        {
          try
          {
              //判断列的起始和终止索引是否有效,行值在有效的范围内
            if (this.Columns.Count >0 && intStartCol >=0 && intEndCol <this.Columns.Count && row<this.Rows.Count ) 
            {
              int i;
                double tmpDec=0;
                //循环统计该行起始列到终止列累加和,从intStartCol到intEndCol列都是数值型数据
                for (i=intStartCol;i<intEndCol;i++)
                    try
                    {tmpDec=tmpDec +(double)(this.Rows[row].Cells[i].Value); }
                    catch (Exception)
                    { }
                    
                return tmpDec;
            }
            else
                return 0;
          }
            catch(Exception)
          {
            return 0;
            }
        }    
        /// <summary>
        /// 导出数据到Excel
        /// <param name="startComlumn">起始列,0表示第一列,依次类推</param>
        /// <param name="endColumn" >终止列,1表示第一列,依次类推</param>
        /// </summary>
        public void loadDataToExcel(int startComlumn,int endColumn)
        {
          if (this.Rows.Count <=0)
          { MessageBox.Show("没有数据,无法导出!");
            return ;
          }
          if (startComlumn > endColumn)
          {
              MessageBox.Show("起始列不能大于终止列!");
              return;
          }
          if (startComlumn>=this.Columns.Count || endColumn>=this.Columns.Count)
          {
              MessageBox.Show("起始列和终止列都不能大于总列数!");
              return;
          }
          //创建Excel中的新表         
          Excel.ApplicationClass oExcel = new Excel.ApplicationClass();
          oExcel.Application.Workbooks.Add(true);   
          
          int n=0;
          int i=0;         
          //填充表头
          for (i = startComlumn; i < endColumn; i++)
          { 
          oExcel.Cells[1, i+1] = this.Columns[i].HeaderText;
          }
          for(n=0;n<this.Rows.Count;n++)
              for (i = startComlumn; i <endColumn; i++)
              { 
               oExcel.Cells[n+2, i+1] = this.Rows[n].Cells[i].Value.ToString();
             
              }
          oExcel.Visible = true;        
          oExcel.Quit();
          oExcel = null;
            GC.Collect();
              
        }

时间: 2024-10-08 01:10:08

含有打印、统计DataGridView(1)的相关文章

含有打印、统计DataGridView(2)

/// <summary>        /// 导出数据到Excel                /// </summary>        public void loadDataToExcel()        {            if (this.Rows.Count <= 0)            {                MessageBox.Show("没有数据,无法导出!");                return;

词频统计 第三周

package search; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.

(第二周)新英文词频统计

需求分析 1.两种读取文件的方法(建立两个类):  小文本输入.命令行输入文件名 2.进行词频统计 3.对结果进行排序并输出 https:https://git.coding.net/yanzouzhe/ywcptj.git SSH:[email protected]:yanzouzhe/ywcptj.git 功能实现 1.小文本输入读取文件 public class Article { /** * @param args */ String content;// 保存文章的内容 String[

winfrom 打印和预览

在windows应用程序中文档的打印是一项非常重要的功能,在以前一直是一个非常复杂的工作,Microsoft .Net Framework的打印功能都以组件的方式提供,为程序员提供了很大的方便.由于工作中常用到印功功能,个人写了一个专门打印DataGridView对象一个类,可以实现预览和打印功能,而且自动缩放字段.添加颜色:在预览时可以根据不同的比例查看效果,可以查看第几页数据和直接打印第几页的 数据.请看效果图. 二.附上调用代码 三.提供源码: 1 using System; 2 usin

Linux - wc统计文件行数、单词数或字节数

一 wc简介 wc命令用来打印文件的文本行数.单词数.字节数等(print the number of newlines, words, and bytes in files).在Windows的Word中有个"字数统计"的工具,可以帮我们把选中范围的字数.字符数统计出来.Linux下的wc命令可以实现这个 功能.使用vi打开文件的时候,底下的信息也会显示行数和字节数. 二 常用参数 格式:wc -l <file> 打印指定文件的文本行数.(l=小写L) 以下参数可组合使用

Linux命令-统计文件中的字节数、字数、行数:wc

Linux系统中的wc(Word Count)命令的功能为统计指定文件中的字节数.字数.行数,并将统计结果显示输出. 1.命令格式: wc [选项]文件... 2.命令功能: 统计指定文件中的字节数.字数.行数,并将统计结果显示输出.该命令统计指定文件中的字节数.字数.行数.如果没有给出文件名,则从标准输入读取.wc同时也给出所指定文件的总统计数. 3.命令参数: -c 统计字节数. -l 统计行数. -m 统计字符数.这个标志不能与 -c 标志一起使用. -w 统计字数.一个字被定义为由空白.

shell的wc命令统计

Linux系统中的wc(Word Count)命令的功能为统计指定文件中的字节数.字数.行数,并将统计结果显示输出. 1.命令格式: wc [选项]文件... 2.命令功能: 统计指定文件中的字节数.字数.行数,并将统计结果显示输出.该命令统计指定文件中的字节数.字数.行数.如果没有给出文件名,则从标准输入读取.wc同时也给出所指定文件的总统计数. 3.命令参数: -c 统计字节数. -l 统计行数. -m 统计字符数.这个标志不能与 -c 标志一起使用. -w 统计字数.一个字被定义为由空白.

02 使用spark进行词频统计【scala交互】

我们已经在CentOS7中安装了spark,本节将展示如何在spark中通过scala方式交互的进行词频统计. 1 系统.软件以及前提约束 CentOS 7 64 工作站 作者的机子ip是192.168.100.200,主机名为danji,请读者根据自己实际情况设置 hadoop已经安装完毕并启动 https://www.jianshu.com/p/b7ae3b51e559 spark已经安装完毕并启动 https://www.jianshu.com/p/8384ab76e8d4 为去除权限对操

BI (商业智能)

BI (商业智能) 编辑 商业智能(BI,Business Intelligence). BI(Business Intelligence)即商务智能,它是一套完整的解决方案,用来将企业中现有的数据进行有效的整合,快速准确的提供报表并提出决策依据,帮助企业做出明智的业务经营决策. 中文名 商业智能 外文名 Business Intelligence 目录 1 简介 2 BI厂商 3 功能 ? 主要架构 ? 应用范围 4 应用科学 5 三个层次 6 发展过程 ? 发展趋势 ? 智能控件 7 BI软