上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: DataSet6 = DataSet1.Copy(); DataRow[] dr = DataSet6.Tables[0].Select(" 完工状态 = '完工异常' "); DataTable dt1 = DataSet6.Tables[0].Clone(); for (int i = 0; i 阅读全文
posted @ 2018-05-19 11:58 追逐苦痛 阅读(523) 评论(0) 推荐(0) 编辑
摘要: private void btn_add_Click(object sender, EventArgs e) { string str_P_ID = ""; string str_P_Type = ""; string str_P_Name = ""; int count = Convert.ToI 阅读全文
posted @ 2016-10-20 11:46 追逐苦痛 阅读(292) 评论(0) 推荐(0) 编辑
摘要: //Combobox private void T_Form_CY_CBD_D_CurrentCellChanged(object sender, EventArgs e) { DataGridViewCell CurrnetCell = T_Form_CY_CBD_D.CurrentCell; T 阅读全文
posted @ 2016-10-14 16:00 追逐苦痛 阅读(648) 评论(0) 推荐(0) 编辑
摘要: private void T_Form_CY_CBD_D_CellValueChanged(object sender, DataGridViewCellEventArgs e) { if (T_Form_CY_CBD_D.Rows.Count > 0 && e.RowIndex >= 0) { / 阅读全文
posted @ 2016-10-14 15:57 追逐苦痛 阅读(749) 评论(0) 推荐(0) 编辑
摘要: DataTable dt2 = GetDgvToTable(Form_CY_ProjectRequirements_D); MessageBox.Show( dt2.Rows.Count.ToString()); //// protected DataTable GetDgvToTable(Data 阅读全文
posted @ 2016-10-13 15:23 追逐苦痛 阅读(170) 评论(0) 推荐(0) 编辑
摘要: protected void FillTree() { H_data H_data = new H_data(); H_data.sql_text1 = " select [FID],[N_Name],[N_Parent_ID] FROM [PLM].[dbo].[T_Sys_File_Tree] 阅读全文
posted @ 2016-10-11 15:29 追逐苦痛 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 全局唯一标识符(GUID,Globally Unique Identifier)是一种由算法生成的二进制长度为128位的数字标识符。 using System; namespace GUID测试 { class Program { static void Main(string[] args) { 阅读全文
posted @ 2016-09-29 17:11 追逐苦痛 阅读(153) 评论(0) 推荐(0) 编辑
摘要: alter table [dbo].[auto_ZYRD-Pa-0718-01_myFields_18] alter column CntDesc nvarchar(2500) alter table [dbo].[auto_ZYRD-Pa-0718-01_myFields_18] alter co 阅读全文
posted @ 2016-08-15 16:08 追逐苦痛 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1. 不在同一网段或网域的两台 SQL Server 建立信任,采用实例右击 "注册" 的方式。 2. 对于不能访问发布主机的 SQL Server ,订阅机采用 修改 Host 文件作映射的方式,例如:192.168.1.6 PM-SERVER。 3. FTP 服务建在发布主机本机, 发布目录和f 阅读全文
posted @ 2016-07-15 10:56 追逐苦痛 阅读(373) 评论(0) 推荐(0) 编辑
摘要: use mastergoselect @@servername;select serverproperty('servername') sp_dropserver 'BPM-SERVER'gosp_addserver 'BPM','local' ___________________________ 阅读全文
posted @ 2016-07-12 14:54 追逐苦痛 阅读(169) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页