摘要: The list of styles that can be applied are:SQL Style IDSQL StyleExample0 or 100mon dd yyyy hh:miAM (or PM)Jan 15 2008 5:44PM101mm/dd/yy01/15/2008102yy.mm.dd2008.01.15103dd/mm/yy15/01/2008104dd.mm.yy15.01.2008105dd-mm-yy15-01-2008106dd mon yy15 Jan 2008107Mon dd, yyJan 15, 2008108hh:mm:ss17:42:339 or 阅读全文
posted @ 2012-01-11 13:40 YF.G 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 首先,设置可编辑单元格的属性。选定要保留的单元格,“单元格格式”——“保护”——“锁定”,把单元格属性中的“锁定”取消。然后,锁定表格。点击菜单,“工具”——“保护”—— “工作表保护”,将“选定未锁定的单元格”打勾就可以了。此外,还可以设定一个保护密码。 阅读全文
posted @ 2012-01-09 20:47 YF.G 阅读(1360) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.techrepublic.com/blog/10things/10-reasons-windows-8-will-be-painful-for-developers/2885?tag=content;siu-container10 reasons Windows 8 will be painful for developersBy Justin JamesDecember 5, 2011, 9:18 AM PSTTakeaway: If you plan to develop Windows 8 native apps, be prepared for some h 阅读全文
posted @ 2011-12-31 23:08 YF.G 阅读(165) 评论(0) 推荐(0) 编辑
摘要: //把Json字符串反序列化为对象目标对象 = JavaScriptConvert.DeserializeObject(JSON字符串, typeof(目标对象));//把目标对象序列化为Json字符串string Json字符串 = JavaScriptConvert.SerializeObject(目标对象);Product product = new Product(); product.Name = "Apple";product.Expiry = new DateTime(2008, 12, 28);product.Price = 3.99M;product.Si 阅读全文
posted @ 2011-12-24 19:26 YF.G 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 收集关于JS Math的内容据说用JS来算浮点数会死人,暂时没有时间多看<script>var x=1.23456;y=Math.round(x*100)/100;</script> 阅读全文
posted @ 2011-12-21 14:46 YF.G 阅读(104) 评论(0) 推荐(0) 编辑
摘要: .Net MVC框架中配置和使用Ext.Direct.MVC 2.2,原网页:http://code.google.com/p/ext-direct-mvc/wiki/ConfiguringAndUsing但是现在访问不了了,现在有更新的版本IntroductionTo start using Ext.Direct.Mvc download the binaries, extract the files from the archive, and add references to Newtonsoft.Json.dll and the right version of Ext.Direct. 阅读全文
posted @ 2011-12-21 00:39 YF.G 阅读(891) 评论(0) 推荐(0) 编辑