• 00
  • :
  • 00
  • :
  • 00
摘要: 开始前请先阅读 GZFramwork快速开发框架之窗体设计说明 第一步:准备模块图片 图片为2张大小分别为16x16和32x32,放在\Debug\images目录下 因为会员管理模块并不多 把NavBarControl Group的图标换成32x32大小的; 修改GZVip.Main.frmMain.cs代码 修改 Re... 阅读全文
posted @ 2015-03-08 09:17 Garson_Zhang 阅读(542) 评论(0) 推荐(0) 编辑
摘要: GZFramwork框架开发环境为.NET 4.0(必须) VS2013+SQL2005+DevExpress v13.2.8+FastReport(推荐) 数据库建模工具PowerDesignerGZFramwork快速开发框架源码下载地址CSDN下载下载以后分两部分,GZFramwork是框架... 阅读全文
posted @ 2015-03-08 09:10 Garson_Zhang 阅读(1490) 评论(3) 推荐(1) 编辑
摘要: [IIf([D.ApproveDate]==DateTime.MinValue,"",[D.ApproveDate])]如果失败的话,就用一个= [IIf([D.ApproveDate]=DateTime.MinValue,"",[D.ApproveDate])] 阅读全文
posted @ 2015-03-06 09:41 Garson_Zhang 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 调用DoValidate()始终返回true解决方案txtCarNo.IsModified = true; result = result & txtCarNo.DoValidate();LayoutControl设置LayoutControlItem的MaxSize和MinS... 阅读全文
posted @ 2015-03-03 10:33 Garson_Zhang 阅读(434) 评论(0) 推荐(0) 编辑
摘要: DataTable Detail = EditData.Tables[dt_MyUserRole._TableName].Copy(); Detail.AcceptChanges(); var enumTable = from d1 in dtRoleAuth... 阅读全文
posted @ 2015-03-02 16:24 Garson_Zhang 阅读(237) 评论(0) 推荐(0) 编辑
摘要: /* unicode编码范围: 汉字:[0x4e00,0x9fa5](或十进制[19968,40869]) 数字:[0x30,0x39](或十进制[48, 57]) 小写字母:[0x61,0x7a](或十进制[97, 122]) 大写字母:[0x41,0x5a](或十进制[65, 90]) --根据编码范围来判断 */ if unic... 阅读全文
posted @ 2015-03-02 10:44 Garson_Zhang 阅读(854) 评论(0) 推荐(0) 编辑
摘要: sql server 查询分析器消息栏里去掉“(5 行受影响)” 在你代码的开始部分加上这个命令: set nocount on 记住在代码结尾的地方再加上: set nocount off 阅读全文
posted @ 2015-03-01 13:34 Garson_Zhang 阅读(446) 评论(0) 推荐(0) 编辑
摘要: IEnumerable DetailRows() { foreach (DataRow dr in EditData.Tables[tb_AttendLeaveDate._TableName].Rows) yield return dr; } 阅读全文
posted @ 2015-02-26 16:06 Garson_Zhang 阅读(456) 评论(0) 推荐(0) 编辑
摘要: SQL中语言表: SELECT * FROM sys.syslanguages eg: SET LANGUAGE 简体中文 --设置语言 PRINT DATENAME(weekday,GETDATE()) 阅读全文
posted @ 2015-01-28 15:06 Garson_Zhang 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 需要引用的DLL DevExpress.CodeParser DevExpress.Office DevExpress.RichEdit DevExpress.XtraRichEdit MySyntaxHighlightServiceCSharp类 /// /// This class implements the Execute method of the I... 阅读全文
posted @ 2015-01-13 22:32 Garson_Zhang 阅读(1116) 评论(0) 推荐(0) 编辑