- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《教你用C#读写、删除、更新excel表格记录》.doc
教你用C#读写、删除、更新excel表格记录
如图所示,编一个程序,鼠标单击窗体视图区(右边)时,获取一对坐标(X,Y),点击保存将点保存到excel表记录中。此外,还实现了删除、更新功能以及打开excel表功能。插入和更新比较简单,和操作一般的数据库一样,但是删除稍微有点复杂,不能用delete from [Sheet1$] where ID=x的方式删除,自己可以去试,主要是excel数据之间的关系不像关系数据库那么简单,oledb不提供这种方法。所以只能用专门操作excel表的(Microsoft.Office.Interop.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.Data.OleDb;
using System.Reflection;
using Excel = Microsoft.Office.Interop.Excel;
namespace Leation
{
public partial class FrmMain : Form
{
//定义变量
private OleDbConnection connection = null;
private OleDbCommand cmd = null;
private OleDbDataAdapter dataAdapter = null;
private DataSet dataSet = null;
private string filePath = @G:\points.xls;
private string connStr = provider=microsoft.jet.oledb.4.0;data source=G:\\points.xls;extended properties=Excel 8.0;HDR=yes;IMEX=2;
private string selectStr = select * from [Sheet1$];
private string cmdStr = null;
private string OID = null; //对象ID
private string x = null;
private string y = null;
private Excel.Application excelApp = null;
private Excel.Workbook book = null;
private Excel.Worksheet sheet = null;
private Excel.Range range = null;
//构造函数
public FrmMain()
{
InitializeComponent();
}
//鼠标移动事件
private void splitContainer1_Panel2_MouseMove(object sender, MouseEventArgs e)
{
this.lblxy.Text = x= + e.X.ToString() + y= + e.Y.ToString();
}
//鼠标按下事件
private void splitContainer1_Panel2_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
this.tbX.Text = e.X.ToString();
this.tbY.Text = e.Y.ToString();
}
文档评论(0)