资源简介
公司项目要求,做了一个C#程序,内容是excel导入导出+mysql数据库
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Text;
using System.Diagnostics;
using System.IO;
using Microsoft.Office.Interop.Excel;
namespace UIForm4
{
public class ExportDGVToExcel
{
private const int OLDOFFICEVESION = -4143;
private const int NEWOFFICEVESION = 56;
///
/// DataGridView导出Excel
///
/// Excel文件中的标题
/// DataGridView 控件
/// 0:成功;1:DataGridView中无记录;2:Excel无法启动;100:Cancel;9999:异常错误
public int ExportExcel(string strCaption DataGridView myDGV SaveFileDialog saveFileDialog)
{
//saveFileDialog.Filter = “Execl files (*.xls)|*.xls“;
saveFileDialog.Filter = “Excel files office2003(*.xls)|*.xls|Excel office2016(*.xlsx)|*.xlsx|All files (*.*)|*.*“;
saveFileDialog.FilterIndex = 0;
saveFileDialog.RestoreDirectory = true;
//saveFileDialog.CreatePrompt = true;
saveFileDialog.title = “Export Excel File“;
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
if (saveFileDialog.FileName == ““)
{
MessageBox.Show(“请输入保存文件名!“);
saveFileDialog.ShowDialog();
}
// 列索引,行索引,总列数,总行数
int ColIndex = 0 RowIndex = 0;
int ColCount = myDGV.ColumnCount RowCount = myDGV.RowCount;
if (myDGV.RowCount == 0)
{
return 1;
}
// 创建Excel对象
Microsoft.Office.Interop.Excel.Application xlApp = new ApplicationClass();
if (xlApp == null)
{
return 2;
}
try
{
// 创建Excel工作薄
Workbook xlBook = xlApp.Workbooks.Add(true);
Worksheet xlSheet = (Worksheet)xlBook.Worksheets[1];
////Get excel Version
string Version = xlApp.Version;
//保存excel文件的格式
int FormatNum;
if (Convert.ToDouble(Version) < 12)
{
//使用Excel 97-2003
FormatNum = OLDOFFICEVESION;
}
else
{
//使用 excel 2007或更新
FormatNum = NEWOFFICEVESION;
}
// 设置标题
//标题所占的单元格数与DataGridView中的列数相同
Range range = xlSheet.get_Range(xlApp.Cells[1 1] xlApp.Cells[1 ColCount]);
range.MergeCells = true;
xlApp.ActiveCell.FormulaR1C1 = strCaption;
xlApp.ActiveCell.Font.Size = 20;
xlApp.ActiveCell.Font.B
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-20 17:32 UIForm4-备份\
目录 0 2019-03-20 17:32 UIForm4-备份\UIForm4\
文件 187 2019-03-20 08:00 UIForm4-备份\UIForm4\App.config
文件 5612 2019-03-20 11:37 UIForm4-备份\UIForm4\ExportDGVToExcel.cs
文件 6665 2019-03-20 11:21 UIForm4-备份\UIForm4\ExportToExcel.cs
文件 6599 2019-03-20 11:34 UIForm4-备份\UIForm4\Form1.Designer.cs
文件 11904 2019-03-20 15:56 UIForm4-备份\UIForm4\Form1.cs
文件 5817 2019-03-20 11:34 UIForm4-备份\UIForm4\Form1.resx
文件 1250 2019-03-20 10:16 UIForm4-备份\UIForm4\MySQLConn.cs
文件 519 2019-03-20 08:00 UIForm4-备份\UIForm4\Program.cs
目录 0 2019-03-20 17:32 UIForm4-备份\UIForm4\Properties\
文件 1352 2019-03-20 08:00 UIForm4-备份\UIForm4\Properties\AssemblyInfo.cs
文件 2866 2019-03-20 08:00 UIForm4-备份\UIForm4\Properties\Resources.Designer.cs
文件 5612 2019-03-20 08:00 UIForm4-备份\UIForm4\Properties\Resources.resx
文件 1094 2019-03-20 08:00 UIForm4-备份\UIForm4\Properties\Settings.Designer.cs
文件 249 2019-03-20 08:00 UIForm4-备份\UIForm4\Properties\Settings.settings
文件 5346 2019-03-20 11:32 UIForm4-备份\UIForm4\UIForm4.csproj
目录 0 2019-03-20 17:32 UIForm4-备份\UIForm4\bin\
目录 0 2019-03-20 17:32 UIForm4-备份\UIForm4\bin\Debug\
文件 1550200 2011-12-12 06:54 UIForm4-备份\UIForm4\bin\Debug\Microsoft.Office.Interop.Excel.dll
文件 3378414 2011-12-12 11:53 UIForm4-备份\UIForm4\bin\Debug\Microsoft.Office.Interop.Excel.xm
文件 63336 2011-12-12 06:54 UIForm4-备份\UIForm4\bin\Debug\Microsoft.Vbe.Interop.dll
文件 294912 2013-05-22 17:21 UIForm4-备份\UIForm4\bin\Debug\MySql.Data.dll
文件 17920 2019-03-20 11:37 UIForm4-备份\UIForm4\bin\Debug\UIForm4.exe
文件 187 2019-03-20 08:00 UIForm4-备份\UIForm4\bin\Debug\UIForm4.exe.config
文件 36352 2019-03-20 11:37 UIForm4-备份\UIForm4\bin\Debug\UIForm4.pdb
文件 22984 2019-03-20 11:40 UIForm4-备份\UIForm4\bin\Debug\UIForm4.vshost.exe
文件 187 2019-03-20 08:00 UIForm4-备份\UIForm4\bin\Debug\UIForm4.vshost.exe.config
文件 490 2015-06-04 12:48 UIForm4-备份\UIForm4\bin\Debug\UIForm4.vshost.exe.manifest
文件 448360 2011-12-12 06:54 UIForm4-备份\UIForm4\bin\Debug\office.dll
文件 1101614 2011-12-12 11:53 UIForm4-备份\UIForm4\bin\Debug\office.xm
............此处省略17个文件信息
- 上一篇:C#生成Excel表插件
- 下一篇:C#asp.net通过模板生成多页word
相关资源
- C#asp.net通过模板生成多页word
- C#生成Excel表插件
- 宾馆管理信息系统(c#)数据库
- 相册管理器应用程序设计
- C#svg编辑工具
- C#按钮效果
- ASPC#网上书店购物,全部源码,Web网站
- c#操作LibreOffice组件进行文件转换
- COdeSoft打印
- asp web c# 留言板 系统
- .net信息发布系统源码
- c#教师管理系统VS2008 Sql server2005
- 学生信息管理系统完整版,可运行,
- C# winform 点餐订餐系统不是源码
- c#皮肤控件及皮肤打包
- C#开发AE
- GDAL\\OGR读取数据 C#版本
- 服装销售管理系统 erp系统 c#源码 wi
- 广州地铁系统C#实现
- C# WinAPI 手册 含源码
- C#办公自动化系统优质源代码
- c#高级进阶资料
- C#Winform影院售票管理系统数据库齐全
- c#数字图像处理之几何运算
- c#数字图像处理之点运算及直方图
- c# visual studio 2005 仓库管理信息系统
- LXI设备的C# DEMO
- C#软件安装卸载工具源代码.zip
- c#进销存系统完整源代码+数据库
- 学校教务管理系统(c#源码)
评论
共有 条评论