Windows开发-周排行
不废话直接上代码 主要注意是 红色代码部分 Aspose.Cells.TxtLoadOptions lo = new TxtLoadOptions(); lo.Encoding = Encoding.Default; //创建一个Workbook和Worksheet对象 Worksheet wkSh ...
分类:Windows开发 时间:2016-06-30 20:04:45 收藏:0 阅读:643
七月 14, 2016 2:19:25 下午 freemarker.log._JDK14LoggerFactory$JDK14Logger error严重: Error executing FreeMarker templateFreeMarker template error:The follow ...
分类:Windows开发 时间:2016-07-14 15:10:58 收藏:0 阅读:1415
对于WindowsServer2008R2以及之前的版本的系统下,文件迁移一般会选择使用FSMT这个工具,非常好用。最近做某部门文件迁移的项目,发现微软官方的文档介绍FSMT只支持到WindowsServer2008R2,而此次迁移需在WindowsServer2012下完成。于是使用官方介绍的WindowsServer2012自带的..
分类:Windows开发 时间:2016-10-09 00:38:41 收藏:0 阅读:2692
异常:Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005. 解决方法: ...
分类:Windows开发 时间:2016-10-27 23:18:58 收藏:0 阅读:3270
1.[FromBody]属性只能用在一个参数上,当Body中有多个参数要定义类型。一个参数的时候 key="",value="123",key为空才能取到值。 2.返回String类型时内容前后会有双引号。要用HttpResponseMessage类型。 参考: 【HttpResponseMessa ...
分类:Windows开发 时间:2016-11-04 14:00:34 收藏:0 阅读:598
在发布这个配置文件的时候,会发生代码冲突: error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your cha ...
分类:Windows开发 时间:2016-11-23 06:54:59 收藏:0 阅读:2770
WebApi写好之后,在线帮助文档以及能够在线调试的工具是专业化的表现,而Swagger毫无疑问是做Docs的最佳工具,自动生成每个Controller的接口说明,自动将参数解析成json,并且能够在线调试。 那么要讲Swagger应用到Asp.net Core中需要哪些步骤,填多少坑呢? 或者直接 ...
分类:Windows开发 时间:2016-11-27 00:03:20 收藏:0 阅读:6008
使用Delphi IDE Colorizer 设置Delphi IDE背景颜色。效果如下 插件下载地址 http://download.csdn.net/detail/liangchua/9673553 ...
分类:Windows开发 时间:2017-04-22 01:12:45 收藏:0 阅读:4221
本文与个人的技术兴趣无关,但是,如果你正好也有和我一样的烦恼,请花两分钟阅读本文。 背景介绍 我自己家里的电脑(操作系统: Win 7), 因为I*****公司的事情被迫装上了"上网小助手"。 当公司给配备的电脑到位后,我就开始使用公司的电脑上班。 于是,我自己家里的电脑,显然不再需要"上网小助手" ...
分类:Windows开发 时间:2017-05-01 13:33:57 收藏:0 阅读:790
[csharp] view plain copy print? //根据子项目id得到flowjump实体类 flowJumps = this.FlowJumps; //按工序groupby flowjumps IEnumerable<IGrouping<int, FlowJump>> query  ...
分类:Windows开发 时间:2017-05-03 12:48:48 收藏:0 阅读:1185
单击“开始”,指向“管理工具”,然后单击“服务器管理器”。 在“服务器管理器”中,单击“功能”,然后在“服务器管理器”细节窗格中的“功能摘要”下,单击“添加功能”。 此时会启动“添加功能向导”。 在“功能”列表中,选择“Desktop Experience”,然后单击“安装” ...
分类:Windows开发 时间:2017-05-07 18:15:30 收藏:0 阅读:3224
协程:协同程序,在主程序运行的同时,开启另外一段逻辑处理,来协同当前程序的执行,。 开启协程的两种方式 1、StartCoroutine(string methodName) 注意: (1)、参数是方法名(字符串类型),此方法可以包含一个参数 (2)、形参方法可以有返回值 2、StartCorout ...
分类:Windows开发 时间:2017-05-10 15:36:02 收藏:0 阅读:5715
1.未开启pop3或者smtp 2.在使用第三方客户端时,邮箱登录密码不是“登录密码”,应该是生成的授权码。 如图: ...
分类:Windows开发 时间:2017-06-02 14:29:58 收藏:0 阅读:1840
var result = from temp2 in ( from u in users.Tables[0].AsEnumerable() join s in hpcSummary.Tables[0].AsEnumerable() on u.Field<String>("DomainUser") e ...
分类:Windows开发 时间:2017-06-07 18:33:30 收藏:0 阅读:754
... ...
分类:Windows开发 时间:2017-07-24 12:13:28 收藏:0 阅读:2088
我色盲,不是真色盲,而是对颜色没感觉,配出来太丑了,找了找配色表,发现是网页的,每次都要开浏览器 就自己做了个,panel + text ,纯界面操作,没有代码,调调色,填填文字什么的 下载地址:pan.baidu.com/s/1qYTtaHI ...
分类:Windows开发 时间:2017-07-25 09:31:09 收藏:0 阅读:814
环境:Windows 7 64bit 旗舰版 redis 3.2.100 64bit 开始的时候,redis运行的好好的,不过每次启动都要要进入其路径,挺麻烦的,所以就想把它的路径设置到环境变量里,然后直接运行就出现错误:Invalid argument during startup:Failed ...
分类:Windows开发 时间:2017-08-19 19:45:02 收藏:0 阅读:5015
1.服务器端代码 #region 加密 /// <summary> /// 加密 /// </summary> /// <param name="Text"></param> /// <returns></returns> public static string Encrypt(string Te ...
分类:Windows开发 时间:2017-08-23 14:31:50 收藏:0 阅读:1341
#region 客户端 NamedPipeClientStream pipeClient = new NamedPipeClientStream("localhost", "testpipe", PipeDirection.InOut, PipeOptions.Asynchronous, Token ...
分类:Windows开发 时间:2017-09-04 19:26:05 收藏:0 阅读:1589
c# Task.FromResult 的基本用法和实例 This method is useful when you perform an asynchronous operation that returns a Task object, and the result of that Task o ...
分类:Windows开发 时间:2017-09-26 14:30:57 收藏:0 阅读:485
119202122234851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!