码迷,mamicode.com
首页 >  
搜索关键字:datagridview    ( 1038个结果
组合查询——拼接字符串
首先,什么情况下要用到组合查询呢?总的来说,有两种情况:一是在单个查询中从不同的表返回类似结构的数据;二是对单个表执行多个查询,按单个查询返回数据。在这里,我们说的组合查询是指第二种情况,即要查询的表是固定的,查询条件是不定的并且有多个查询条件。 拼接完成后,可以放到数据库中检验一下,接下来的问题就容易多了。 组合查询,其本质终究还是查询。用拼接字符串的方法理解起来比较容易,但特别容易出错。一不小心sql语句就会出错,不过调试起来也挺容易发现错误的。期待大家与我交流其他的查询方法。...
分类:其他好文   时间:2014-06-20 09:32:59    阅读次数:204
C# 自定义重绘DataGridView
using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Linq;using System.Text;using System.Windows.Forms;u...
分类:Windows程序   时间:2014-06-13 13:48:34    阅读次数:830
datagridview 新增方式
//新增 this.dataGridView1.AllowUserToAddRows = true; if (iTag == 1) { //默认自动编号排序 dataGridView1.Columns["taskId"].HeaderCell.SortGlyphDirection = SortOr....
分类:Windows程序   时间:2014-06-11 13:24:07    阅读次数:369
ToolStripMenuItem控件实现DatagridView行的上下移
/*--------------行上移------------------*/ 1 private void 上移ToolStripMenuItem_Click(object sender, EventArgs e) 2 { 3 ...
分类:Windows程序   时间:2014-06-11 10:27:24    阅读次数:261
BS架构数据库操作必备
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Data.SqlClient;using System.Data;using...
分类:数据库   时间:2014-06-07 21:59:54    阅读次数:335
老调重弹---C# winForm三层结构
大牛们略过,对初学者起抛砖引玉的作用。以数据库AdventureWorks的Person.Address表为例。一、建好框架prj 表示层,这里用的是winForm.prjBLL 业务逻辑层,当然是类库PrjDAL 数据访问层,当然是类库啦PrjModel 模型层,当然也是类库啦二、展开三、以上结构...
分类:Windows程序   时间:2014-06-07 17:04:55    阅读次数:509
C# winform datagridview rowheader 添加行标题的方法
#region 写行号事件 //在DataGridView控件上选择RowPostPaint事件 private void dgvJointList_RowPostPaint(object sender, DataGridViewRowPostPaintE...
分类:Windows程序   时间:2014-06-07 07:00:57    阅读次数:718
DataGridView中内置控件常用事件使用心得
checkbox,button,imagebutton使用dataGridView1_CellContentClick private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArg...
分类:Windows程序   时间:2014-06-06 15:04:51    阅读次数:433
C#操作PowerDesigner代码
首先,程序的界面如下:这里一定要使用OpenFileDialog控件,然后该页面代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System....
分类:其他好文   时间:2014-06-05 13:22:36    阅读次数:523
连接sql server的语句
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:数据库   时间:2014-06-04 17:15:53    阅读次数:287
1038条   上一页 1 ... 95 96 97 98 99 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!