注:非调用OFFICE的DLL方法。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;u...
分类:
Web程序 时间:
2014-07-16 23:19:22
阅读次数:
352
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
DataGridView控件具有极高的可配置性和可扩展性。它提供有大量的属性、方法和事件,能够用来对该控件的外观和行为进行自己定义。以下通过一个小样例来展示DataGridView进行增删改查,并同步到数据库的功能。窗口展示:用户需求:1.当窗口显示时,将数据库中用户表中的数据显示出来。2.选中一行...
分类:
数据库 时间:
2014-07-16 23:12:22
阅读次数:
269
//當主表選擇行更改後,顯示相應的採購資料 private void dgvMain_SelectionChanged(object sender, EventArgs e) { if (this.dgvMain.SelectedRows.Count...
选择相应的列进行打印报表、只需实例化带一个DataGridView参数的构造函数就可以使用class PrintGridViewData { public PrintGridViewData() { } private DataGridView DG...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:
Web程序 时间:
2014-07-12 13:20:33
阅读次数:
230
本文转载:http://www.cnblogs.com/hailexuexi/archive/2012/04/23/2466398.html代码:#region DataGridVeiw Style System.Windows.Forms.DataGridViewCellStyle dataGri...
转自https://maodaili.de/mao.php?u=a%2FMrbEvUE8PnCuc7FrhJi0Rqd3kmOBHPZUbcJ1c2hbJUK0RYWpAf4lhIOddItP%2BKI2z5PZEiVpY%3D&b=15DataGridView中DataGridViewComboB...
分类:
Windows程序 时间:
2014-07-10 10:01:57
阅读次数:
1729
// 产生连接字符串 string connString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=student.xls;" + "Extended Properties=...
分类:
其他好文 时间:
2014-07-07 23:50:13
阅读次数:
228
#region 将ENTER键转换为TAB protected override void OnKeyUp(System.Windows.Forms.KeyEventArgs e) { base.OnKeyUp(e); if (...