博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 75 下一页

2011年10月28日

摘要: 不好意思,小小的欺骗大家了。我的DataGridView里没有这一列,实际上呢又实现了这一功能,主要是将一个定义好的ComBoBox添加到一列中,达到DataGridViewComboBoxColumn效果,代码如下:using System;using System.Data;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Text;using System.Windows.Forms;namespace MyNameSpace{ public par 阅读全文

posted @ 2011-10-28 15:14 moss_tan_jun 阅读(4858) 评论(0) 推荐(0) 编辑

摘要: privatevoiddgvInfoPerson_EditingControlShowing(objectsender,DataGridViewEditingControlShowingEventArgse){if(dgvInfoPerson.CurrentCellAddress.X==dgvInfoPerson.Columns["colCboDeptNo"].Index){cbo=e.ControlasComboBox;if(cbo!=null){cbo.DropDownStyle=ComboBoxStyle.DropDown;cbo.AutoCompleteMode=A 阅读全文

posted @ 2011-10-28 14:46 moss_tan_jun 阅读(807) 评论(0) 推荐(0) 编辑

2011年9月8日

摘要: 1.保存datagridview的某一行已经修改的数据时,可以使用CellEnter事件和CellLeave事件。思路,在CellEnter事件中获取旧的文本,在CellLeave事件中获取修改的值。然后再保存。代码如下:View Code 1privatevoiddataGridView1_CellLeave(objectsender,DataGridViewCellEventArgse)2{3vardgv=senderasDataGridView;4this.dataGridView1.EndEdit();5stringcellNewValue=Convert.ToString(dgv[e 阅读全文

posted @ 2011-09-08 12:19 moss_tan_jun 阅读(449) 评论(0) 推荐(0) 编辑

摘要: 1,主要利用CellBeginEdit来来判断。 如果首列为 空,则其他列不能编辑。如果首列不为空,其他列才可以编辑。 因为这有涉及到数据车存储代码如下:View Code 1privatevoiddataGridView1_CellBeginEdit(objectsender,DataGridViewCellCancelEventArgse)2{3vardgv=(DataGridView)sender;4intcolumnIndex=e.ColumnIndex;5stringfirstCellValue=Convert.ToString(dgv[0,e.RowIndex].Value);67 阅读全文

posted @ 2011-09-08 12:14 moss_tan_jun 阅读(198) 评论(0) 推荐(0) 编辑

2011年7月30日

摘要: http://hi.baidu.com/54704/blog/item/9cc2b36e638b2fcc81cb4a19.html 阅读全文

posted @ 2011-07-30 16:38 moss_tan_jun 阅读(267) 评论(0) 推荐(0) 编辑

摘要: winform datagridview表头怎么增加复选框,点击表头的复选框,下面行的复选全选或全未选2011-03-08 14:22using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1{publicpartialclass For 阅读全文

posted @ 2011-07-30 16:37 moss_tan_jun 阅读(5945) 评论(0) 推荐(0) 编辑

2011年7月29日

摘要: C# winform DataGridView 属性说明① 取得或者修改当前单元格的内容 ② 设定单元格只读 ③ 不显示最下面的新行 ④ 判断新增行 ⑤ 行的用户删除操作的自定义 ⑥ 行、列的隐藏和删除 ⑦ 禁止列或者行的Resize ⑧ 列宽和行高以及列头的高度和行头的宽度的自动调整 ⑨ 冻结列或行 ⑩ 列顺序的调整⑪ 行头列头的单元格⑫ 剪切板的操作 ⑬ 单元格的ToolTip的设置 ⑭ 右键菜单(ContextMenuStrip)的设置 ⑮ 单元格的边框、 网格线样式的设定 ⑯ 单元格表示值的设定 ⑰ 用户输入时,单元格输入值的设定 ⑱ 设定新加行的默认值---------------- 阅读全文

posted @ 2011-07-29 16:30 moss_tan_jun 阅读(829) 评论(0) 推荐(0) 编辑

摘要: 方法一declare @max integer,@id integerdeclare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1open cur_rowsfetch cur_rows into @id,@maxwhile @@fetch_status=0beginselect @max = @max -1set rowcount @maxdelete from 表名 where 主字段 = @idfetch cur_rows into @id,@maxendc 阅读全文

posted @ 2011-07-29 16:20 moss_tan_jun 阅读(238) 评论(0) 推荐(0) 编辑

摘要: .NET Language Integrated Query(LINQ)一体化查询语言,是集成在 .NET Framework 3.5 编程语言中的一种新特性,已成为编程语言的一部分,使开发人员可以使用语法基本一致的语句对不同来源不同类型的数据进行查询与整合,它使得查询表达式可以得到很好的编译时语法检查。 一:字符串查询string 查询 string strLinq = "Hello World!"; var result = from q in strLinq select q; var result1 = from q in strLinq where q == &# 阅读全文

posted @ 2011-07-29 16:16 moss_tan_jun 阅读(401) 评论(0) 推荐(0) 编辑

摘要: SQL SERVER数据库全文索引的示例,以pubs数据库为例。首先,介绍利用系统存储过程创建全文索引的具体步骤: 1) 启动数据库的全文处理功能 (sp_fulltext_database) 2) 建立全文目录 (sp_fulltext_catalog) 3) 在全文目录中注册需要全文索引的表 (sp_fulltext_table) 4) 指出表中需要全文索引的列名 (sp_fulltext_column) 5) 为表创建全文索引 (sp_fulltext_table) 6) 填充全文目录 (sp_fulltext_catalog) ---------********示例********-- 阅读全文

posted @ 2011-07-29 15:42 moss_tan_jun 阅读(411) 评论(0) 推荐(0) 编辑

上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 75 下一页