• TreeView ,DataGridView, Excel 代码


    注意:当Excel需要引用的时候请:项目--菜单   ---   添加引用   ---COM   ---Microsoft   Excel   11.0   Object   Library   ---   确定

    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 System.Diagnostics;
    using System.Threading;

    namespace CsharpTest
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void btnAdd_Click(object sender, EventArgs e)
            {
                foreach(Control c in this.panelEx1.Controls)
                {
                    if(c is DevComponents.DotNetBar.Controls.TextBoxX)
                    {
                        c.Text = "123";
                    }else
                    {
                        c.Text = "名称!";
                    }
                }
            }

            private void btnClear_Click(object sender, EventArgs e)
            {

                this.Cursor = Cursors.WaitCursor;//鼠标沙漏形状
                string templetFile = Application.StartupPath + "\\Excel模板文件\\农林牧渔业洪涝灾害统计表.xls";
                if (File.Exists(templetFile))
                {
                    string outputFile = GetOutputFile("农林牧渔业洪涝灾害统计表.xls");//文件另存为
                    if (outputFile == "")
                    {
                        this.Cursor = Cursors.Default;
                        return;
                    }

                    Excel.Application App = null;
                    Excel.Workbook Wb = null;
                    DateTime beforeTime = DateTime.Now;              //用于记录Excel进程打开之前的时间
                    DateTime afterTime = DateTime.Now;               //用于记录Excel进程打开之后的时间
                    try
                    {
                        beforeTime = DateTime.Now;
                        App = new Excel.Application();
                        App.Visible = true;
                        afterTime = DateTime.Now;

                        Wb = GetWorkBook(App, templetFile);
                        if (Wb != null)
                        {
                            Excel.Worksheet Wsheet1 = (Excel.Worksheet)Wb.Worksheets.get_Item(1);
                            WriteDataToExcel(Wsheet1);
                            SaveData(Wb, outputFile);
                        }
                        else
                        {

                            MessageBox.Show(templetFile + "文件打开失败!", "提示");
                        }
                    }
                    catch (SystemException ex)
                    {
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.Message);
                    }
                    finally
                    {
                        this.Cursor = Cursors.Default;
                                  
                    }
                }
                else
                {
                    MessageBox.Show(templetFile + "文件不存在!", "提示");
                }
            }


            /// <summary>
            /// 保存数据
            /// </summary>
            private void SaveData(Excel.Workbook workBook, string outputFile)
            {
                try
                {
                    //保存文件
                    workBook.SaveAs(outputFile, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
                           Excel.XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing,
                           Type.Missing, Type.Missing, Type.Missing);
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }

            /// <summary>
            /// 获得保存文件
            /// </summary>
            private string GetOutputFile(string saveFileName)
            {
                string outputFile = "";
                SaveFileDialog mySaveFileDialog = new SaveFileDialog();
                mySaveFileDialog.FileName = saveFileName;
                mySaveFileDialog.OverwritePrompt = false;
                mySaveFileDialog.Filter = "Excel文件|*.xls|所有文件|*.*";
                mySaveFileDialog.DefaultExt = "xls";
                mySaveFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                if (mySaveFileDialog.ShowDialog() == DialogResult.OK)
                {
                    outputFile = mySaveFileDialog.FileName;
                }

                return outputFile;
            }
            /// <summary>
            /// 获得workBook
            /// </summary>
            private Excel.Workbook GetWorkBook(Excel.Application app, string templetFile)
            {
                try
                {
                    Excel.Workbook wb = app.Workbooks.Open(templetFile, Type.Missing, Type.Missing,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing, Excel.XlPlatform.xlWindows,
                        Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
                    return wb;
                }
                catch
                {
                    return null;
                }
            }
            /// <summary>
            /// 写入数据
            /// </summary>
            private void WriteDataToExcel(Excel.Worksheet workSheet)
            {
                try
                {
                    //填充数据
                    int i = 0;
                    for (i = 0; i < dgv.dgvInfo.RowCount; i++)
                    {
                        int j = 1;
                        foreach (DataGridViewColumn col in dgv.dgvInfo.Columns)
                        {
                            if (col.Visible == true)
                            {
                                if (dgv.dgvInfo[col.Name, i] != null && dgv.dgvInfo[col.Name, i].Value.ToString() != "")
                                {
                                    workSheet.Cells[i + 11, j] = dgv.dgvInfo[col.Name, i].Value.ToString();
                                }

                                j++;
                            }
                        }
                    }
                    workSheet.Cells[22, 2] = this.labDWFZR.Text;
                    workSheet.Cells[22, 5] = this.labTJFZR.Text;
                    workSheet.Cells[22, 9] = this.labTBR.Text;
                    if (this.tv.SelectedNode != null)
                    {
                        workSheet.Cells[22, 12] = this.tv.SelectedNode.Text;
                    }

                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }

        }
    }

  • 相关阅读:
    HBase 操作
    HBase Java API 例子
    微信浏览器拖动出现黑色/白色背景、网址问题解决方案
    layui弹出层置顶弹出
    使用layui时,ajax执行后,重新渲染页面的方法
    宝塔更新
    js 播放音频文件 兼容火狐 谷歌浏览器
    SAP断点
    error_log 用法
    SE开头的事务代码
  • 原文地址:https://www.cnblogs.com/beeone/p/2012702.html
Copyright © 2020-2023  润新知