影子博客

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

07 2016 档案

摘要:EXCEPT 返回两个结果集的差(即从左查询中返回右查询没有找到的所有非重复值)。 INTERSECT 返回 两个结果集的交集(即两个查询都返回的所有非重复值)。 UNION返回两个结果集的并集。 语法: { () } { EXCEPT | INTERSECT } { ( )} 限制条件 (1)所有 阅读全文
posted @ 2016-07-27 14:55 影子博客 阅读(409) 评论(0) 推荐(0)

摘要:declare @test table( name varchar(10)) insert into @test values('a') insert into @test values('b') insert into @test values('c') insert into @test val 阅读全文
posted @ 2016-07-25 09:25 影子博客 阅读(313) 评论(0) 推荐(0)

摘要:private void Form1_Load(object sender, EventArgs e) { ///控件属性来处理 Control.CheckForIllegalCrossThreadCalls = false; } DataSet ds = new DataSet(); Mydele 阅读全文
posted @ 2016-07-22 14:39 影子博客 阅读(258) 评论(0) 推荐(0)

摘要:// Create a new bevel border. //FarPoint.Win.BevelBorder bevelbrdr = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered, Color.Cyan, Co 阅读全文
posted @ 2016-07-21 14:58 影子博客 阅读(853) 评论(0) 推荐(0)

摘要:private void gridView1_CustomSummaryCalculate(object sender, DevExpress.Data.CustomSummaryEventArgs e) { if (((DevExpress.XtraGrid.GridSummaryItem)e.I 阅读全文
posted @ 2016-07-18 16:24 影子博客 阅读(580) 评论(0) 推荐(0)

摘要:private void btnQuery_Click(object sender, EventArgs e) { if (cboxFactory.Text=="") { MessageBox.Show("请选择厂别!","系统提示"); return; } fname = cboxFactory. 阅读全文
posted @ 2016-07-16 11:27 影子博客 阅读(326) 评论(0) 推荐(0)

摘要:if (e.Button == MouseButtons.Right) { if (gridView1.GetFocusedRowCellValue("color").ToString() == "1" || gridView1.GetFocusedRowCellValue("color").ToS 阅读全文
posted @ 2016-07-08 17:01 影子博客 阅读(425) 评论(0) 推荐(0)

摘要:private void gridView1_RowCellStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e) { int hand = e.RowHandle; if (hand = 0) { i 阅读全文
posted @ 2016-07-08 09:32 影子博客 阅读(4494) 评论(0) 推荐(0)

摘要:public partial class BanCiCombox : UserControl { string _gong = ""; Ctrl cl = new Ctrl(); public BanCiCombox() { InitializeComponent(); } public BanCi 阅读全文
posted @ 2016-07-07 14:53 影子博客 阅读(125) 评论(0) 推荐(0)