摘要: public void Save(Bitmap image, int quality, string filePath, int startx, int endy) { // Get the image's original width and height ... 阅读全文
posted @ 2014-05-05 10:25 futan57 阅读(403) 评论(0) 推荐(0) 编辑
摘要: With Safari 5/Firefox 4, it’s easiest to use the FormData class:var data =newFormData();jQuery.each($('#file')[0].files,function(i, file){ data.app... 阅读全文
posted @ 2014-04-18 11:44 futan57 阅读(1197) 评论(0) 推荐(0) 编辑
摘要: ProblemWith XML being used in so many application and data exchange capacities, extracting XML from SQL Server should not be a challenge. Yet, some organizations are building complex applications to do so and overlooking some of the native SQL Server features. If the data tier has a viable option to 阅读全文
posted @ 2014-04-03 13:57 futan57 阅读(390) 评论(0) 推荐(0) 编辑
摘要: Npoi是什么?1.整个Excel表格叫做工作表:WorkBook(工作薄),包含的叫页(工作表):Sheet;行:Row;单元格Cell。2.Npoi下载地址:http://npoi.codeplex.com/releases/view/381133.Npoi学习系列教程推荐:http://www.cnblogs.com/tonyqus/archive/2009/04/12/1434209.html4.忘了告诉大家npoi是做什么的了,npoi 能够读写几乎所有的Office 97-2003文件格式,至少能够支持Word, PowerPoint, Excel, Visio的格式。使用Npoi 阅读全文
posted @ 2014-04-03 13:18 futan57 阅读(529) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-07-15 22:44 futan57 阅读(0) 评论(0) 推荐(0) 编辑
摘要: coordinate thread shutdown 阅读全文
posted @ 2013-07-06 15:32 futan57 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 首先看一个Interface1 Public Interface ISavable2 {3 4 5 string Save();6 7 }接着让一个Class继承这个Interface 1 public Class Catgory:ISavable 2 { 3 public string Save() 4 { 5 6 return "catogry save!" 7 8 } 9 10 string ISavable.Save()//explicit Interface Implementation11 {12 13 14 return "Isavable save 阅读全文
posted @ 2013-07-03 22:19 futan57 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 最近看一个法国人( Jean LACHAUD)的博士论文,是一篇英语法语混写的paper。无语啊...法语取词不太行,想先转成WORD,先把取词识别错误的部分改掉再说吧,于是 好容易转成了WORD,没想到法语字符怎么这么多,有些字符转换出现不识别或识别错误的情况,心想还是用WORD拼写检查核对PDF中的文字再说吧... 结果发现还要装法语包,虽然咱是正版的office 2010,但微软不免费提供语言包下载啊。搜了下,找到了语言包,嘿嘿,居然可以安装成功。常用语言包下载地址:French64bit http://msft.digitalrivercontent.net/01/501016817- 阅读全文
posted @ 2013-06-26 22:02 futan57 阅读(1185) 评论(0) 推荐(0) 编辑
摘要: First Error:检测到 ASP.NET Web Pages 的冲突版本: 指定的版本为“2.0.0.0”,而 bin 中的版本为“1.0.0.0”。要继续操作,请删除应用程序 bin 目录中的文件,或者删除 web.config 中的版本指定。English version:Conflicting versions of ASP.NET WebPages detected: specified version is"1.0.0.0", but the version in bin is"2.0.0.0".Tocontinue, remove fi 阅读全文
posted @ 2013-06-08 18:01 futan57 阅读(3528) 评论(1) 推荐(1) 编辑
摘要: An implicitly implemented interface member is, by default, sealed. It must bemarked virtualor abstractin the base class in order to be overridden. For example: 1 public interface IUndoable { void Undo(); } 2 public class TextBox : IUndoable 3 { 4 public virtualvoid Undo() 5 { 6 Console.WriteLine (&q 阅读全文
posted @ 2013-06-06 15:51 futan57 阅读(159) 评论(0) 推荐(0) 编辑