摘要:
View Code 1 //改变字体 2 private void btnFont_Click(object sender, EventArgs e) 3 { 4 try 5 { 6 FontDialog fontDialog = new FontDialog(); 7 fontDialog.Color = dgvHistroy.RowTemplate.DefaultCellStyle.ForeColor; 8 fontDialog.Font = dgvHistroy.RowTemplate.DefaultCellStyle.Font; 9 fontDialog.AllowScriptCha 阅读全文
posted @ 2011-06-23 15:34
笨笨的菜鸟
阅读(5993)
评论(1)
推荐(0)
摘要:
View Code 1 INNER JOIN 连接两个数据表的用法: 2 SELECT * FROM 表1 INNER JOIN 表2 ON 表1.字段号=表2.字段号 3 4 INNER JOIN 连接三个数据表的用法: 5 SELECT * FROM (表1 INNER JOIN 表2 ON 表1.字段号=表2.字段号) INNER JOIN 表3 ON 表1.字段号=表3.字段号 6 7 INNER JOIN 连接四个数据表的用法: 8 SELECT * FROM ((表1 INNER JOIN 表2 ON 表1.字段号=表2.字段号) INNER JOIN 表3 ON 表1.字段号=表 阅读全文
posted @ 2011-06-23 15:11
笨笨的菜鸟
阅读(929)
评论(3)
推荐(0)