摘要: 在datagridview中有时需要在右键点击某行的时候就选中它,那么我们只需要在datagridview的CellMonseDown事件中添加如下代码就行: if (e.Button == MouseButtons.Right && e.RowIndex > -1 && e.ColumnIndex > -1){ (sender as DataGridView).CurrentRow.Selected = false; (sender as DataGridView).Rows[e.RowIndex].Selected = true;} 阅读全文
posted @ 2014-03-26 20:41 dekevin 阅读(2420) 评论(0) 推荐(0) 编辑
摘要: 获取选中行中某一列的值:int index = dg_Product.CurrentRow.Index; //取得选中行的索引 txt_ProductId.Text = dg_Product.Rows[index].Cells["Id"].Value; //获取单元格列名为‘Id’的值 阅读全文
posted @ 2014-03-26 20:38 dekevin 阅读(2714) 评论(0) 推荐(0) 编辑
摘要: 主窗体: string getroomtypeid = this.dgvroomtype.Rows[e.RowIndex].Cells[0].Value.ToString(); AddRoomTypeFrm AddRoomTypeFrm = new AddRoomTypeFrm(getroomtypeid); AddRoomTypeFrm.Show();子窗体public AddRoomTypeFrm(string getroomtypeid){ InitializeComponent(); stri... 阅读全文
posted @ 2014-03-26 20:35 dekevin 阅读(221) 评论(0) 推荐(0) 编辑
摘要: string getroomtypeid = this.dgvroomtype.Rows[e.RowIndex].Cells[0].Value.ToString(); 阅读全文
posted @ 2014-03-26 20:33 dekevin 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 列表最常见的数据类型映射访问类型名称数据库数据类型OLEDB 类型.NET 框架类型成员名称文本VarWCharDBTYPE _ WSTRSystem.StringOleDbType.VarWChar备忘录LongVarWCha RDBTYPE _ WSTRSystem.StringOleDbTyp... 阅读全文
posted @ 2014-03-26 18:46 dekevin 阅读(346) 评论(0) 推荐(0) 编辑
摘要: //conStrSQL你改成你的access,我这里用的SQL2005stringconStrSQL="DataSource=xx.xx.xx.xx;InitialCatalog=xxxxx;UserID=xx;Password=xxxx";stringstrSQL="selectmax(自动编号字... 阅读全文
posted @ 2014-03-26 17:37 dekevin 阅读(1127) 评论(0) 推荐(0) 编辑