摘要: 相关: http://blog.sina.com.cn/s/blog_45c379c001016d7u.htmlDLL :备注: 1、运行TTSrepair.exe,修护系统语音功能。(确保系统语音相关组件能正常使用) 2、添加 Interop.SpeechLib.dll 和Spee... 阅读全文
posted @ 2015-12-25 14:29 人生为卒 阅读(913) 评论(0) 推荐(0) 编辑
摘要: http://www.it165.net/pro/html/201404/11512.html 阅读全文
posted @ 2015-12-17 16:36 人生为卒 阅读(128) 评论(0) 推荐(0) 编辑
摘要: /// /// 判断DataTale中判断某个字段中包含某个数据 /// /// /// /// /// public static Boolean IsColumnIncl... 阅读全文
posted @ 2015-12-16 09:39 人生为卒 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 在基类(父类)中用virtual修饰符声明一个虚方法,然后在在派生类(子类)中用override修饰符覆盖基类虚方法。表明是对基类的虚方法重载。这种优势在于它可以在程序运行时再决定调用哪一个方法,这就是所谓的“运行时多态”或者称动态绑定。 阅读全文
posted @ 2015-12-15 09:39 人生为卒 阅读(193) 评论(0) 推荐(0) 编辑
摘要: http://www.pconline.com.cn/win10/653/6536078.html 阅读全文
posted @ 2015-12-08 15:40 人生为卒 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 转发: http://www.csframework.com/archive/2/arc-2-20120313-1919.htmLookupEdit可以绑定数据表(DataTable)或对象数据组(Object List)作为数据源,下拉窗体可自定显示栏位。绑定数据源需要设置三个参数:Display... 阅读全文
posted @ 2015-12-02 17:11 人生为卒 阅读(403) 评论(0) 推荐(0) 编辑
摘要: public enum testenum{ aa, bb, cc, dd};//遍历枚举foreach (testenum item in Enum.GetValues(typeof(testenum))){}Enum.GetValues(typeof(枚举的名称));可以获得指定枚举... 阅读全文
posted @ 2015-12-02 15:53 人生为卒 阅读(140) 评论(0) 推荐(0) 编辑
摘要: select * from 表名 where Convert(varchar(100),日期字段,23)='2008-12-15' 再给你个Convert函数的应用: Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Sel... 阅读全文
posted @ 2015-12-01 17:03 人生为卒 阅读(8532) 评论(0) 推荐(1) 编辑
摘要: 条件运算符 (?:) 根据 Boolean 表达式的值返回两个值之一。https://msdn.microsoft.com/zh-cn/library/ty67wk28.aspxcondition ? first_expression : second_expression;condition的计算... 阅读全文
posted @ 2015-11-30 15:06 人生为卒 阅读(562) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/ad310e80a83e891849f49e04.html 阅读全文
posted @ 2015-11-30 09:11 人生为卒 阅读(138) 评论(0) 推荐(0) 编辑