上一页 1 ··· 8 9 10 11 12
摘要: Solutions:Select the 'Microsoft.Office.Interop.Excel' reference -> right click -> properties -> set 'Embel Interop Types' to False -> set 'Copy Local' to True.In my project. I just copy the 'Microsoft.Office.Interop.Excel.dll' to my local libraries.The &qu 阅读全文
posted @ 2013-01-21 14:03 Vincent.Dr 阅读(2520) 评论(0) 推荐(0)
摘要: WIKI百科http://www.wikipedia.org/开源软件开发平台和仓库http://sourceforge.netArtechhttp://www.cnblogs.com/artech/中道学友http://www.cnblogs.com/awpatp/ZENhttp://www.sh... 阅读全文
posted @ 2013-01-18 13:45 Vincent.Dr 阅读(160) 评论(0) 推荐(0)
摘要: -------------------------------------MyEclipse 快捷键1(CTRL)-------------------------------------Ctrl+1 快速修复Ctrl+D: 删除当前行Ctrl+Q 定位到最后编辑的地方Ctrl+L 定位在某行Ctrl+O 快速显示 OutLineCtrl+T 快速显示当前类的继承结构Ctrl+W 关闭当前EditerCtrl+K 快速定位到下一个Ctrl+E 快速显示当前Editer的下拉列表Ctrl+J 正向增量查找(按下Ctrl+J后,你所输入的每个字母编辑器都提供快速匹配定位到某个单词,如果没有,则在s 阅读全文
posted @ 2013-01-17 14:47 Vincent.Dr 阅读(200) 评论(0) 推荐(0)
摘要: 一个.xls的档案 = 一本活页簿(Workbook) = n个工作表(Worksheet)一个工作表(Worksheet) = 65536(列)*256(行) = 16777216个储存格(Cell) 阅读全文
posted @ 2013-01-15 16:27 Vincent.Dr 阅读(821) 评论(0) 推荐(0)
摘要: The type 'Microsoft.Office.Interop.Excel.ApplicationClass' has no constructors definedInterop type 'Microsoft.Office.Interop.Excel.ApplicationClass' cannot be embedded. Use the applicable interface instead.---Solution---Disable embedding of Interop types for this assembly (References 阅读全文
posted @ 2013-01-15 15:36 Vincent.Dr 阅读(1570) 评论(0) 推荐(0)
摘要: DECLARE @Customer_Name VARCHAR(500)DECLARE perCursor CURSOR FOR SELECT Name FROM PersonOPEN perCursorFETCH NEXT FROM perCursor into @Customer_Name WHILE @@FETCH_STATUS = 0 BEGIN print @Customer_Name FETCH NEXT FROM perCursor into @Customer_Name ENDCLOSE perCursorDEALLOCATE perCursor 阅读全文
posted @ 2013-01-11 12:42 Vincent.Dr 阅读(161) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12