<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>Office开发</title>
<link>http://www.kuqin.com/office/</link>
<description>挖经验 / Office开发</description>
<language>zh-cn</language>
<generator>Copyright &amp;copy; 2007-2008 &lt;A href=&quot;http://www.kuqin.com&quot;&gt;酷勤网&lt;/A&gt; All Rights Reserved
&lt;A href=&quot;http://www.miibeian.gov.cn/&quot; target=&quot;_blank&quot;&gt;京ICP备07011765号&lt;/A&gt;</generator>
<webmaster>kuqin.com@163.com</webmaster>
<item>
    <title>动态修改Excel数据表的数据来源</title>
    <link>http://www.kuqin.com/office/20100118/78052.html</link>
    <description>Excel有一个很有用的功能是直接导入外部数据库或者使用外部数据源建立数据透视表和数据透视图。但比较可惜的是，这个数据源的查询语句是静态的，它无法根据日期自动修改（比如在应用中，我们希望每天获取的外部数据都是当天最新的数据），下面两个函数是修改外部数据源</description>
    <pubDate>2010-01-18</pubDate>
    <category>Office开发</category>
    <author>zhiqiang</author>
    <comments>阅微堂</comments>
</item>
<item>
    <title>VBA中引用WorkSheet的新方法</title>
    <link>http://www.kuqin.com/office/20091215/75667.html</link>
    <description>最近学到一招，效果不错～
在写VBA中常需要引用某个WorkSheet对象，一般通过工作表名
    Dim ws As Worksheet&amp;nbsp;&amp;nbsp; Set ws = ThisWorkbook.Worksheets(&amp;quot;Sheet2Name&amp;quot;)
或者索引号
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Worksheets(</description>
    <pubDate>2009-12-15</pubDate>
    <category>Office开发</category>
    <author>zhiqiang</author>
    <comments>阅微堂</comments>
</item>
<item>
    <title>也谈为什么我们不重视Office开发－看孟岩说有感</title>
    <link>http://www.kuqin.com/office/20090315/40005.html</link>
    <description>1、不反对孟岩兄提到的VB的地位影响；2、是否使用Office在于企业老板的决策；3、决策中影响的因素重点在于授权限制、成本控制、独立或依赖性。</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>韩小明</author>
    <comments>csdn博客</comments>
</item>
<item>
    <title>以Office为开发平台时所需掌握的知识</title>
    <link>http://www.kuqin.com/office/20090315/40004.html</link>
    <description>Word、Excel、Outlook 和其余的 Office 应用程序有意设计成显式提供大多数功能作为 COM 服务器供外部使用。显然，Office 的体系结构考虑到了自定义解决方案。因此，您能够轻松地构建可以与一个甚至是多个 Office 应用程序无缝挂接的解决方案。</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>秩名</author>
    <comments>msdn在线</comments>
</item>
<item>
    <title>用VBA统计字符串中的中文字个数</title>
    <link>http://www.kuqin.com/office/20090315/40003.html</link>
    <description>核心语句： re.Pattern = &quot;[\u4e00-\u9fa5]&quot; ；核心技术：汉字的机内码是有规律的 </description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>朱亦文</author>
    <comments>博客园</comments>
</item>
<item>
    <title>Office 2007的VBA，以及Office开发的随想</title>
    <link>http://www.kuqin.com/office/20090315/40002.html</link>
    <description>以后Office开发的主流应该是服务器开发和VSTO的开发。但Office可以获得大量应用，与Excel、Access大量的业余程序员不无关系，如何找到合适的VBA的替代品应该是微软的当务之急。希望不要再出现类似VB 6到VB.net这种转换的事情，到VB2005以及后续版本再补救。</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>马维峰</author>
    <comments>博客园</comments>
</item>
<item>
    <title>选择 VB.NET 还是 C# ?</title>
    <link>http://www.kuqin.com/office/20090315/40001.html</link>
    <description>现在我们来回答两个问题：1　当我使用Visual Studio Tools for Office的时候, 我应该使用VB.NET还是C#? 2　当我安装Visual Studio Tools for Office时, 我应该选择安装VB.NET还是C#?</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>郭安定</author>
    <comments>csdn博客</comments>
</item>
<item>
    <title>郭安定：Visual Basic 10年风云</title>
    <link>http://www.kuqin.com/office/20090315/40000.html</link>
    <description>对过去转换到Office开发平台的编程人员，现在是关键时刻，开发的重心应该在XML网络服务器的设计，并且将它和Office充分整合，Office的对象模型将更丰富，亟须具备巧思的编程人员发挥它的威力，你可以预期Office和Visual Studio将更加整合，未来将充满挑战与希望......</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>郭安定</author>
    <comments>csdn博客</comments>
</item>
<item>
    <title>用Visual C# 2005开发Office外接程序</title>
    <link>http://www.kuqin.com/office/20090315/39999.html</link>
    <description>最合适用来开发Office外接程序的工具即使在VS2005中，仍然是VB.因为Office的对象内核依然是以VB的模式建立的.VB中有大量的函数使用可变数量的参数，而这些函数如果在C#中调用，则不得不用大量的Type.Missing或Missing.Value来填充，C#不允许可变参数。</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>漫歌冬季</author>
    <comments>LiveSpace</comments>
</item>
<item>
    <title>为什么我们不重视Office开发——与郭安定谈话想到的</title>
    <link>http://www.kuqin.com/office/20090315/39998.html</link>
    <description>通过VBA编程，在Word、Excel、Outlook、Project等Office套件中，全都唾手可得，如果能够充分利用，很多应用项目（特别是企业应用项目）的开发就会轻快很多。</description>
    <pubDate>2009-03-15</pubDate>
    <category>Office开发</category>
    <author>孟岩</author>
    <comments>csdn博客</comments>
</item>
<item>
    <title>控制用户在Word中的拖拽行为</title>
    <link>http://www.kuqin.com/office/20081104/25640.html</link>
    <description>拦截DoDragDrop的调用，真实地去调用Ole32的真实实现，但是不直接使用原装的DropSource（包装之后再用）。因为我们要监听Windows对DropSource的回调，再“恰当”的时候篡QueryContinueDrag的返回值。</description>
    <pubDate>2008-11-04</pubDate>
    <category>Office开发</category>
    <author>taowen</author>
    <comments>博客园</comments>
</item>
<item>
    <title>小T历险记：给一个word 2003的插件添加一个command bar</title>
    <link>http://www.kuqin.com/office/20081104/25637.html</link>
    <description>Command Bar的王道是用.dot加CustomizationContext。但是要认识到这一点，不写烂两三个项目是做不到的。关于command bar的故事有很多，比如怎么样取消built-in command bar button的行为，OnAction有什么用，Command bar与Accessibility api的关系，以及著名的Outlook+W</description>
    <pubDate>2008-11-04</pubDate>
    <category>Office开发</category>
    <author>taowen</author>
    <comments>博客园</comments>
</item>
<item>
    <title>UNO让MonoDevelop可以开发OpenOffice应用</title>
    <link>http://www.kuqin.com/office/20080629/10259.html</link>
    <description>由于现存大量由VBA编写的从简单到复杂的应用程序，很多公司甚至都不会考虑去尝试一下OpenOffice的开发。但不被很多人所知的是，OpenOffice开发人员现在也可以露几手了。OpenOffice开发的基础是UNO组件技术。类似COM，它被设计用于进程内和跨平台开发。</description>
    <pubDate>2008-06-29</pubDate>
    <category>Office开发</category>
    <author>Jonathan Allen译者 朱永光</author>
    <comments>InfoQ</comments>
</item>
<item>
    <title>部分Office 2007文件格式转换为xps和pdf代码整理</title>
    <link>http://www.kuqin.com/office/20080504/7814.html</link>
    <description>添加对三个组件的引用，这里使用一个枚举类型来来决定生成文件的类型。可使用个方法来实现这个功能，这里Word和Excel我使用ExportAsFixedFormat，PowerPoint使用SaveAs，对于Word和PowerPoint效果是一样的。只是SaveAs支持的格式更多, 但我发现似乎Excel不支持SaveAs.</description>
    <pubDate>2008-05-04</pubDate>
    <category>Office开发</category>
    <author>蒜头</author>
    <comments>博客园</comments>
</item>
<item>
    <title>Excel2007操作类库</title>
    <link>http://www.kuqin.com/office/20080322/4932.html</link>
    <description>Office2007中的Excel,Word,PowedPoint使用了OpenXml文件格式，文件是一个标准的zip压缩包，只需要简单的将文件的扩展名更改为.zip，就能看到其内部的具体内容，大部分是标准的xml文件，所以类库主要的任务就是操作xml。</description>
    <pubDate>2008-03-22</pubDate>
    <category>Office开发</category>
    <author>ppchen（陈荣林）</author>
    <comments>博客园</comments>
</item>
<item>
    <title>VB和VBA工程的一些限制</title>
    <link>http://www.kuqin.com/office/20070909/973.html</link>
    <description>对每个模块的过程数没有限制。每个过程可包含至多 64K 的代码。如果过程或模块超过这一限制，Visual Basic 便产生编译时间错误。如果遇到这种错误，可将特别大的过程分割成若干个较小的过程，或将模块级声明移到另一模块，来避免此类错误发生。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>马维峰</author>
    <comments>博客园</comments>
</item>
<item>
    <title>为何Office的VBA如此成功，ArcGIS的却平平</title>
    <link>http://www.kuqin.com/office/20070909/972.html</link>
    <description>以ArcGIS为例，ArcGIS扩展必须使用ArcObject，不管是使用VBA也罢，VB也罢，还是C++也罢。但同时，ArcObject的学习不是一天两天可以搞定，对于业余程序员，要使用VBA来扩展ArcGIS，几乎没有可能；专业程序员又不屑使用VBA...</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>马维峰</author>
    <comments>博客园</comments>
</item>
<item>
    <title>Microsoft Office SharePoint Server 2007 Starter Page</title>
    <link>http://www.kuqin.com/office/20070909/971.html</link>
    <description>Microsoft Office SharePoint Server 2007 Starter Page. 本页面会不断更新，增加新的内容，强烈建议加入到您的收藏夹中。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>kaneboy</author>
    <comments>joycode.com</comments>
</item>
<item>
    <title>Office with .Net（二）之外传――“彻底干净的”关闭Office程序</title>
    <link>http://www.kuqin.com/office/20070909/970.html</link>
    <description>凡是涉及到使用Office Automation，即通过自定义的代码启动Office，操作Office编程接口完成一些工作（不管是在WinForms程序，或是ASP.NET程序中），都不可避免的会遇到一个问题，就是如何“彻底干净的”将代码启动的Office程序关闭掉。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>kaneboy</author>
    <comments>joycode.com</comments>
</item>
<item>
    <title>Office with .Net 二 ―― 使用.Net访问Office编程接口</title>
    <link>http://www.kuqin.com/office/20070909/969.html</link>
    <description>介绍如何在.Net中访问Office所公开的编程接口。在这篇文章中，所有的演示都将基于Office 2003 Professional和Visual Studio 2005。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>kaneboy</author>
    <comments>joycode.com</comments>
</item>
<item>
    <title>Office with .Net 系列之一 ―― 在自己的程序中宿主Office</title>
    <link>http://www.kuqin.com/office/20070909/968.html</link>
    <description>在自己的程序中宿主Office”的意思就是在我们自己开发的应用程序的窗体上，显示一个就像Office应用程序那样的界面，用来显示和操作Office文档。其实，通过使用Microsoft Web Browser这个ActiveX控件，我们能够非常方便的做到。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>Kaneboy</author>
    <comments>joycode.com</comments>
</item>
<item>
    <title>OFFICE开发历程</title>
    <link>http://www.kuqin.com/office/20070909/967.html</link>
    <description>Office开发的潜力还是相当大的，因为用Office开发可靠性高，效率高，Office本身还是平易近人的。技术也是在不断地发展的，我们有理由相信，我们可以做到更好。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>秩名</author>
    <comments>博客园</comments>
</item>
<item>
    <title>基于Visual Studio 2003/2005的Office插件开发FAQ</title>
    <link>http://www.kuqin.com/office/20070909/966.html</link>
    <description>1. 一定要把宏安全级别设置为Medium以下，默认是High，肯定不允许运行任何Addin 2. 在开发Addin的机器上，建议仅安装一个版本的Office，否则可能因为引用的Office Library Reference混淆，导致在其他机器上无法正常加载...</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>Tony Qu</author>
    <comments>博客园</comments>
</item>
<item>
    <title>C# Office开发</title>
    <link>http://www.kuqin.com/office/20070909/965.html</link>
    <description>最近要做一个处理Excel和Word文档的小程序，因为是新接触此类东东，因此在这里将这次开发的经历记录下来。</description>
    <pubDate>2007-09-09</pubDate>
    <category>Office开发</category>
    <author>不详</author>
    <comments>CSDN博客</comments>
</item>

</channel>
</rss>
