<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/madeinjack" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/madeinjack" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 10 Apr 2009 12:33:00 GMT</lastBuildDate><title>编程浪子涛的专栏</title><description>张扬而不张狂，拼搏而不拼命，忙碌而不盲目，放松但不放纵！</description><link>http://blog.csdn.net/MadeInJack/</link><item><title>C#读写Excel文档</title><link>http://blog.csdn.net/MadeInJack/archive/2009/04/10/4061969.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/4061969.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/4061969.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4061969</trackback:ping><description>1、 读写Excel文件
A、设计Excel模版
B、打开一个目标文件并且读取模版内容
C、目标文件按格式写入需要的数据
D、保存并且输出目标Excel文件 
2、 Excel对象资源释放，这个在以前项目没有注意彻底释放使用到Excel对象，对客户计算机资源造成一定浪费，此次得到彻底解决。
&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/4061969.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Apr 2009 20:33:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2009/04/10/4061969.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2009/04/10/4061969.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2009/04/10/4061969.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868895/5481412</fs:itemid></item><item><title>服务器重启服务</title><link>http://blog.csdn.net/MadeInJack/archive/2009/03/18/4001464.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/4001464.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/4001464.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4001464</trackback:ping><description>&lt;br /&gt;//服务器重启服务&lt;br /&gt;using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.ServiceProcess; using System.IO; using System.Text; using System.Timers; namespace CBDCN_reboot { public partial class Service1 : ServiceBase { public Service1() { InitializeComponent(); } protected override void OnStart(string[] args) { // TODO: 在此处添加代码以启动服务。 double sleeptime = ValidatorDate1(System.DateTime.Now.ToString(&quot;yyy-MM-dd HH:mm:ss&quot;&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/4001464.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 18 Mar 2009 22:50:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2009/03/18/4001464.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2009/03/18/4001464.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2009/03/18/4001464.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868896/5481412</fs:itemid></item><item><title># Bitmap 缩放 剪裁</title><link>http://blog.csdn.net/MadeInJack/archive/2009/02/24/3931457.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/3931457.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/3931457.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3931457</trackback:ping><description>&lt;br /&gt;/// &lt;br /&gt;        /// Resize图片&lt;br /&gt;        /// &lt;br /&gt;        /// 原始Bitmap&lt;br /&gt;        /// 新的宽度&lt;br /&gt;        /// 新的高度&lt;br /&gt;        /// 保留着，暂时未用&lt;br /&gt;        /// 处理以后的图片&lt;br /&gt;        public static Bitmap KiResizeImage(Bitmap bmp, int newW, int newH, int Mode)&lt;br /&gt;        {&lt;br /&gt;            try&lt;br /&gt;            {&lt;br /&gt;                Bitmap b = ne&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/3931457.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 24 Feb 2009 19:21:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2009/02/24/3931457.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2009/02/24/3931457.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2009/02/24/3931457.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868897/5481412</fs:itemid></item><item><title>c sharp 中调用mo如何解决引用问题？</title><link>http://blog.csdn.net/MadeInJack/archive/2009/01/14/3777294.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/3777294.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/3777294.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3777294</trackback:ping><description>&lt;br /&gt;Step 1: Run &quot;REGEDIT&quot; from the Command Prompt or the Windows &quot;Start | Run...&quot; menu item and navigate to this key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework In this key are a few different values on the right-side panel, one of them is named &quot;sdkInstallRootv1.1&quot;. The value to the right of this name is the absolute path on your machine's disk where &quot;bin\gacutil.exe&quot; is stored. In a typical default installation of .NET, the path in this key's value might look something like this: &quot;C&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/3777294.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 15 Jan 2009 00:56:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2009/01/14/3777294.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2009/01/14/3777294.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2009/01/14/3777294.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868898/5481412</fs:itemid></item><item><title>ArcGIS Desktop 9.2 破解安装指南</title><link>http://blog.csdn.net/MadeInJack/archive/2009/01/13/3764975.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/3764975.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/3764975.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3764975</trackback:ping><description>为这个我已经折腾了两天了，太不易了，转发过来，大家看看。有问题可以问我。&lt;br /&gt;&lt;br /&gt;安装前：&lt;br /&gt;&lt;br /&gt;1、如果已安装ArcGIS 9.2之前版本的软件，请先卸载干净，否则安装可能不成功； &lt;br /&gt;2、安装License Manger（ArcGIS 9.2许可管理器）：&lt;br /&gt;用记事本打开 license.lic 文件，在第一行将 “SERVER this_host any”中的 this_host 修改为您计算机的名称，然后保存修改；&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/3764975.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 13 Jan 2009 17:54:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2009/01/13/3764975.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2009/01/13/3764975.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2009/01/13/3764975.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868899/5481412</fs:itemid></item><item><title>多线程、定时、异步一些应用。。</title><link>http://blog.csdn.net/MadeInJack/archive/2008/11/21/3345269.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/3345269.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/3345269.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3345269</trackback:ping><description>&lt;br /&gt;很久不写了，原因是自己很懒。本来打算把前段时间在台湾弄的GoogleMap的总结一下。可是那边用的vs2008回来我的电脑装的都是2005，又懒得把程序转化了。呵~&lt;br /&gt; 最近需要几个功能用到了多线程、异步、等等总结一下。会说的一下几个问题： &lt;br /&gt;1、前台UI响应后开个其他的线程干别的。&lt;br /&gt;2、每隔一段时间做点事 &lt;br /&gt;3、非UI线程咋访问UI上的控件啊。&lt;br /&gt;4. Timer类原来有好几个啊。 &lt;br /&gt;&lt;br /&gt;1.这个是我UI的响应一下后要异步的执行一个东东。多线程、异步看的糊里糊涂，看到一句话说的挺好的“异步是目的，多线程是手段”大有拨开云雾见日出的意思。&lt;br /&gt;这里我用的是线程池。将线程安放在线程池里，需使用ThreadPool.QueueUserWorkItem()方法，该方法的原型如下： &lt;br /&gt;//将一个线程放进线程池，该线程的Start()方法将调用WaitCallback代理对象代表的函数 &lt;br /&gt;public static bool QueueUserWorkItem(WaitCallback); &lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/3345269.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Nov 2008 21:11:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2008/11/21/3345269.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2008/11/21/3345269.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2008/11/21/3345269.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868900/5481412</fs:itemid></item><item><title>.net C# Treeview的Node拖动，Node节点上下移动</title><link>http://blog.csdn.net/MadeInJack/archive/2008/08/29/2846947.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/2846947.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/2846947.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2846947</trackback:ping><description>定义一个TreeView 名字为TVdepartment,设置allowdrop为True 
//&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/2846947.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 29 Aug 2008 18:35:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2008/08/29/2846947.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2008/08/29/2846947.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2008/08/29/2846947.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868901/5481412</fs:itemid></item><item><title>用Visual C#实现P2P应用程序</title><link>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2796440.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/2796440.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/2796440.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2796440</trackback:ping><description>P2P开发应用示例，比较简单！&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/2796440.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 19 Aug 2008 23:57:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2796440.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2008/08/19/2796440.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2796440.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868902/5481412</fs:itemid></item><item><title>C#实现快捷键 (系统热键)响应</title><link>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2795306.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/2795306.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/2795306.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2795306</trackback:ping><description>软件支持系统热键功能，已在自已的写的工具中实现此功能。&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/2795306.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 19 Aug 2008 21:45:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2795306.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2008/08/19/2795306.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2008/08/19/2795306.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868903/5481412</fs:itemid></item><item><title>用C#对DBF数据库的操作</title><link>http://blog.csdn.net/MadeInJack/archive/2008/07/01/2602553.aspx</link><wfw:comment>http://blog.csdn.net/MadeInJack/comments/2602553.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/MadeInJack/comments/commentRss/2602553.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2602553</trackback:ping><description>用C#对DBF数据库的操作&lt;img src =&quot;http://blog.csdn.net/MadeInJack/aggbug/2602553.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 02 Jul 2008 00:20:00 +0800</pubDate><author>编程浪子涛</author><comments>http://blog.csdn.net/MadeInJack/archive/2008/07/01/2602553.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/MadeInJack/archive/2008/07/01/2602553.aspx</guid><dc:creator>编程浪子涛</dc:creator><fs:srclink>http://blog.csdn.net/MadeInJack/archive/2008/07/01/2602553.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/madeinjack/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/madeinjack/~7371894/207868904/5481412</fs:itemid></item></channel></rss>