摘要:
//只读属性设置 dgv.ReadOnly = true; //尾行自动追加 dgv.AllowUserToAddRows = false; dgv.AllowUserToDeleteRows... 阅读全文
摘要:
AllowUserToAddRows=false; 阅读全文
摘要:
int count = 0; for (int i = 0; i < this.TableData.Rows.Count; i++) { if (this.TableData.Rows[i].Cells[0].FormattedValue.ToString() == "True") { ... 阅读全文
摘要:
using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Web;using System.Web.Services;using System.Web.Services.Protocols;using System.Xml;namespace WebService... 阅读全文
摘要:
public IList GetPlatCount() { IList PlatCount = new List(); string sql = string.Format("select PlatformId ,S_PassIdNum ,E_PassIdNum from PlatformAssign "); D... 阅读全文
摘要:
if (this.dataGridView1.CurrentRow != null && this.dataGridView1.CurrentRow.Cells["Column3"].Value != null) int i = int... 阅读全文
摘要:
if ((e.KeyChar 57) && (e.KeyChar != 8)) e.Handled = true; 阅读全文
摘要:
AgentLogin formLogin = new AgentLogin(new CSShell()); if (formLogin.ShowDialog() == DialogResult.OK) { Application.Run(new InfoServerQuery(new CSShell())); 阅读全文
摘要:
CONVERT将某种数据类型的表达式显式转换为另一种数据类型。由于某些需求经常用到取日期格式的不同.现以下可在SQL Server中 将日期格式化. SQL Server 支持使用科威特算法的阿拉伯样式中的数据格式。 在表中,左侧的两列表示将 datetime 或 smalldatetime 转换为字符数据的 style 值。给 style 值加 100,可获得包括世纪数位的四位年份 (yyyy... 阅读全文