摘要:
1、 checkbox点击事件 private void myStyleDataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == -1 || e.RowIndex == -1) 阅读全文
摘要:
1、先创建两个临时表,并插入数据 CREATE TABLE #TEMP1( ID INT IDENTITY(1,1) PRIMARY KEY, name NVARCHAR(50)) CREATE TABLE #TEMP2( ID INT IDENTITY(1,1) PRIMARY KEY, name 阅读全文
摘要:
revert 撤销,还原Resolved 解决branch 分支plus 加强Dependence 依赖Inversion 反省Principle 原则Handler 处理程序assigned 分配native 本机unsigned 无符号component 组件Visible 可见Attribut 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
1、另一窗体建公共变量listdataRow public List<DataGridViewRow> listdataRow = new List<DataGridViewRow>(); FRM_TR_CurrencyQueryEx_View2_DLCR frmTrCurrencyQueryEx 阅读全文
摘要:
1、实际小窗体界面如下 2、代码如下 private void InputBox(string caption,string orderNo) { Form InputForm = new Form(); InputForm.MinimizeBox = false; InputForm.Maximi 阅读全文
摘要:
1 public partial class UCRights : UserControl 2 { 3 private readonly int LOCATIONY; 4 private DataTable MENU = new DataTable(); 5 private BLL.User oUs 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data; 6 using System.Security.Cryptograph 阅读全文
摘要:
第一种、从DataSet里筛选分页行的数据 第二种、直接SQL语句ROW_NUMGER() OVER(ORDER BY T.ID DESC) select * from ( select ROW_NUMBER() over(order by t.id desc ) as Row,t.* from T 阅读全文
摘要:
public int SolveCareless() { try { Perceive(); Accuracy(); Punishment(); FocusingAttention(); Check(); } catch(Exception ex) { string strMsg= ... 阅读全文