05 2011 档案

摘要:先列出正确的写法,如果你只想马上改错就先复制吧,Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->protectedvoiddeleteDataRow(intRowID,DataTabledt){for(inti=dt.Rows.Count-1;i>=0;i--){if(Convert.ToInt32(dt.Rows[i]["RowID"])==RowID)dt.Rows.RemoveAt(i);}}如果你有时间想学习 阅读全文
posted @ 2011-05-16 11:59 勇气 阅读(497) 评论(0) 推荐(0)
摘要:string Qstr = null; foreach (DataRow dr in dt.Rows)//把获取的dt中的Id赋给字符串,用字符串传递 { Qstr += dr["PS_Id"].ToString() + ","; } //去除字符串后面的“,” if (Qstr == null) { Common.AdCommon.ShowError("该店没有下属店"); } else { Qstr = Qstr.Remove(Qstr.Length - 1); dt = bllPassive.SelectStore(Qstr); 阅读全文
posted @ 2011-05-14 20:05 勇气 阅读(206) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2011-05-10 10:16 勇气 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2011-05-10 10:00 勇气 阅读(2) 评论(0) 推荐(0)
摘要:http://home.cnblogs.com/group/topic/29829.html对C# WinForm开发系列收集的控件使用方面进行整理, 加入了一些文章, 不断补充充实, 完善这方面. 基础 - 常用控件 C# WinForm开发系列 - CheckBox/Button/Label/ProgressBar WinForm下CheckedListBox的数据绑定 Winform 下无闪烁走马灯效果实现 c#,winform,progressbar+labe,联动显示进度 C# WinForm开发系列 – TextBox 只能输入数字的TextBox---补充 (C#)为 TextB 阅读全文
posted @ 2011-05-03 17:13 勇气 阅读(580) 评论(0) 推荐(0)