码迷,mamicode.com
首页 >  
搜索关键字:datagridview    ( 1038个结果
.Net常用技巧_传入DataGrid直接导出成Excel
注:非调用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
.Net常用技巧_将DataGridView的内容转换成DataTable
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:Windows程序   时间:2014-07-16 23:13:43    阅读次数:289
使用DataGridView进行增删改查,并同步到数据库
DataGridView控件具有极高的可配置性和可扩展性。它提供有大量的属性、方法和事件,能够用来对该控件的外观和行为进行自己定义。以下通过一个小样例来展示DataGridView进行增删改查,并同步到数据库的功能。窗口展示:用户需求:1.当窗口显示时,将数据库中用户表中的数据显示出来。2.选中一行...
分类:数据库   时间:2014-07-16 23:12:22    阅读次数:269
.Net常用技巧_隐藏/显示DataGridView的行/等待框(转)
//當主表選擇行更改後,顯示相應的採購資料 private void dgvMain_SelectionChanged(object sender, EventArgs e) { if (this.dgvMain.SelectedRows.Count...
分类:Windows程序   时间:2014-07-16 23:09:46    阅读次数:331
.Net常用技巧_打印DataGridView(转)
选择相应的列进行打印报表、只需实例化带一个DataGridView参数的构造函数就可以使用class PrintGridViewData { public PrintGridViewData() { } private DataGridView DG...
分类:Windows程序   时间:2014-07-16 23:08:34    阅读次数:274
.Net常用技巧_VS2005[C#] 操作 Excel 全攻略(转)
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
# DataGridView样式 (蓝色)
本文转载:http://www.cnblogs.com/hailexuexi/archive/2012/04/23/2466398.html代码:#region DataGridVeiw Style System.Windows.Forms.DataGridViewCellStyle dataGri...
分类:Windows程序   时间:2014-07-10 11:38:10    阅读次数:290
DataGridView中DataGridViewComboBoxColumn的一些相关应用(一)让其值改变时触发事件-转
转自https://maodaili.de/mao.php?u=a%2FMrbEvUE8PnCuc7FrhJi0Rqd3kmOBHPZUbcJ1c2hbJUK0RYWpAf4lhIOddItP%2BKI2z5PZEiVpY%3D&b=15DataGridView中DataGridViewComboB...
分类:Windows程序   时间:2014-07-10 10:01:57    阅读次数:1729
读取Excel
// 产生连接字符串 string connString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=student.xls;" + "Extended Properties=...
分类:其他好文   时间:2014-07-07 23:50:13    阅读次数:228
C# DataGridView点击Enter键切换单元格
#region 将ENTER键转换为TAB protected override void OnKeyUp(System.Windows.Forms.KeyEventArgs e) { base.OnKeyUp(e); if (...
分类:Windows程序   时间:2014-06-29 20:04:19    阅读次数:343
1038条   上一页 1 ... 91 92 93 94 95 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!