摘要:insert into tableA select from tableB b where not exists(select 1 from tableA a where a.id = b.id) insert into tableA select from tableB b left join t
阅读全文
|
05 2016 档案
摘要:insert into tableA select from tableB b where not exists(select 1 from tableA a where a.id = b.id) insert into tableA select from tableB b left join t
阅读全文
摘要:/// /// 创建结构体用于返回捕获时间 /// [StructLayout(LayoutKind.Sequential)] struct LASTINPUTINFO { /// /// 设置结构体块容量 /// [MarshalAs(UnmanagedType.U4)] public int c
阅读全文
摘要:private void FrmLotterycs_Load(object sender, EventArgs e) { t = 0; UserJuanquanTB = O.get_UserJuanquan(empName); if (UserJuanquanTB.Rows.Count 0) { g
阅读全文
摘要:DEVexpress GridControl 属性设置 2013年11月22日 ⁄ 综合 ⁄ 共 18319字 ⁄ 字号 小 中 大 ⁄ 评论关闭 1、 如何解决单击记录整行选中的问题 View OptionsBehavior EditorShowMode 设置为:Click 2、 如何新增一条记录
阅读全文
摘要:static int t = 0; internal class MyMessager : IMessageFilter { public bool PreFilterMessage(ref Message m) { //如果检测到有鼠标或则键盘的消息,则使计数为0..... if (m.Msg =
阅读全文
摘要:private void btnQuery_Click(object sender, EventArgs e) { backgroundWorker1.RunWorkerAsync(); btnQuery.Enabled = false; label8.Visible = true; } Threa
阅读全文
摘要://如果汇总的话直接可在模板里面填写公式,不过要有三行空行才行 比如SUM(A1,A2,A3) fpSpread1.Sheets[0].RowCount = 30; fpSpread1.Sheets[0].ColumnCount = 15; yclCheckManager cm = new yclC
阅读全文
摘要:高低字节转换 SELECT 616/256 SELECT 616%256 SELECT 2 256+104
阅读全文
|