<?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/SupermanKing" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/SupermanKing" type="application/rss+xml"></fs:self_link><lastBuildDate>Sun, 01 Feb 2009 00:32:00 GMT</lastBuildDate><title>SupermanKing的专栏</title><link>http://blog.csdn.net/SupermanKing/</link><item><title>VB实现数字到中文金额的转换函数</title><link>http://blog.csdn.net/SupermanKing/archive/2009/02/01/3856022.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3856022.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3856022.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3856022</trackback:ping><description>&lt;br /&gt;Visual Basic CodePrivateFunction NMoneyToSMoney ( NMoney AsVariant )   AsString&lt;br /&gt;      IfIsNumeric ( NMoney )     =   FalseThen&lt;br /&gt;            NMoneyToSMoney   =   &quot;不是数字类型&quot;&lt;br /&gt;            ExitFunction&lt;br /&gt;      EndIf&lt;br /&gt;      Dim BasicDWString As String, BasicDW (   )   AsString&lt;br /&gt;      Dim MoneyDWString As String, MoneyDW (   )   AsString&lt;br /&gt;      Dim MoneyStr As String, ReturnStr As String, TempStr AsString&lt;br /&gt;      BasicDWString   =   &quot;分,角,圆,拾,佰,仟,万,拾,佰,仟,亿,拾,佰,仟,万亿,兆,&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3856022.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 01 Feb 2009 08:32:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2009/02/01/3856022.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2009/02/01/3856022.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VB用Bitblt实现透明位图显示</title><link>http://blog.csdn.net/SupermanKing/archive/2008/12/16/3526090.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3526090.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3526090.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3526090</trackback:ping><description>&lt;br /&gt;Visual Basic Code'API声明&lt;br /&gt;Private Declare Function BitBlt Lib &quot;gdi32&quot;   ( ByVal hDestDC As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop AsLong )   AsLong&lt;br /&gt;&lt;br /&gt;PrivateSub Command1_Click (   )  &lt;br /&gt;      BitBlt 目标图.hDC,   ( 目标图.Width / 2 - 掩码图.Width / 2 )   / 15,0, 掩码图.Width / 15, 掩码图.Height / 15, 掩码图.hDC, 0,0, vbSrcAnd&lt;br /&gt;      BitBlt 目标图.hDC,   ( 目标图.Width / 2 - 掩码&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3526090.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 16 Dec 2008 08:19:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/12/16/3526090.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/12/16/3526090.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VC中实现VFW的时时视频捕捉</title><link>http://blog.csdn.net/SupermanKing/archive/2008/11/02/3207341.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3207341.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3207341.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3207341</trackback:ping><description>Visual C++ Code#include &lt;br /&gt;#include &quot;StdAfx.h&quot;&lt;br /&gt;#include &lt;br /&gt;#include &lt;br /&gt;#pragma comment(lib,&quot;VFW32.LIB&quot;)&lt;br /&gt;&lt;br /&gt;HWND AVIhWnd = 0;&lt;br /&gt;HWND hWnd = 0;&lt;br /&gt;HDC hDC = 0;&lt;br /&gt;HDC ScenehDC = 0;&lt;br /&gt;DWORD AVIWidth = 640;&lt;br /&gt;DWORD AVIHeight = 480;&lt;br /&gt;DWORD DCColorBits = 32;&lt;br /&gt;BYTE BmpByte[1920*480];&lt;br /&gt;&lt;br /&gt;BITMAPINFO DCitmap;&lt;br /&gt;HBITMAP SceneBitmap;&lt;br /&gt;HGDIOBJ AboriginaalObject;&lt;br /&gt;LPCSTR szClassName;&lt;br /&gt;LPCSTR szWindowTitle;&lt;br /&gt;&lt;br /&gt;long&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3207341.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 03 Nov 2008 03:09:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/11/02/3207341.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/11/02/3207341.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VC中调用ADO对象访问数据库的范例</title><link>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082934.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3082934.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3082934.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3082934</trackback:ping><description>Visual C++ Code#include &quot;stdafx.h&quot;#include &quot;stdio.h&quot;#include &quot;windows.h&quot;#include &quot;string.h&quot;#import &quot;C:\Program Files\Common Files\System\ado\msado20.tlb&quot; no_namespace rename(&quot;EOF&quot;, &quot;adoEOF&quot;)HRESULT ComInit();int APIENTRY WinMain(HINSTANCE hInstance,                     HINSTANCE hPrevInstance,                     LPSTR     lpCmdLine,                     int       nCmdShow){    _ConnectionPtr pCn;    _RecordsetPtr pRs;&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3082934.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 16 Oct 2008 10:59:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082934.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082934.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VC中调用XMLHTTP对象访问远程数据的方法</title><link>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082913.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3082913.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3082913.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3082913</trackback:ping><description>Visual C++ Code//这里是DLL入口#import &quot;C:\WINDOWS\system32\msxml.dll&quot;#import &quot;C:\WINDOWS\system32\msxml2.dll&quot;usingnamespace MSXML2;HRESULT ComInit();#include &quot;stdio.h&quot;int APIENTRY WinMain(HINSTANCE hInstance,                     HINSTANCE hPrevInstance,                     LPSTR     lpCmdLine,                     int       nCmdShow){    ComInit();   //调用下面初始化COM的函数    IXMLHTTPRequestPtr xmlrequest;        //定义变量    xmlreque&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3082913.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 16 Oct 2008 10:53:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082913.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082913.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VB用XML实现在线翻译范例</title><link>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082860.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3082860.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3082860.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3082860</trackback:ping><description>本例采用雅虎的在线翻译功能为基础，提供中英，中日的在线翻译效果，希望对想了解XMLHTTP对象和UTF-8编码的VB爱好者有所帮助。界面效果如下：以下是窗口的程序代码：Visual Basic CodeOptionExplicitPrivate Declare Function MultiByteToWideChar Lib &quot;kernel32&quot; (ByVal CodePage AsLong, ByVal dwFlags AsLong, ByVal lpMultiByteStr AsLong, ByVal cchMultiByte AsLong, ByVal lpWideCharStr AsLong, ByVal cchWideChar AsLong) AsLongPrivate Declare Function WideCharToMultiByte Lib &quot;kernel32&quot; (ByVal CodePage AsLong, ByVal dwFlags AsLong, ByVal l&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3082860.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 16 Oct 2008 10:37:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082860.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082860.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>在VC中调用VB编写的COM组件范例</title><link>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082809.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/3082809.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/3082809.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3082809</trackback:ping><description>VB调用VC的DLL大家应该不陌生，而VC如何调用VB编写的DLL这个问题对于搞VB开发的人来说可能却就是个问题。为了广大的VB爱好者向VC进军，我就从VB开发者的角度来说说在VC中调用VB编写的COM组件的方法。我举个例子。 先说说VB开发一个COM组件。 用VB新建一个ActiveX DLL 工程， 然后修改工程名称为 MyVB 再修改默认的类名为 DEMO 然后再向类中添加一个函数作为测试用，如： Visual Basic CodePrivate Declare Function GetUserName Lib &quot;advapi32.dll&quot; Alias &quot;GetUserNameA&quot;   ( ByVal lpBuffer As String, nSize AsLong )   AsLong'取得当前系统登陆的用户名称PublicFunction GetMyName (   )   AsString        Dim UserName AsString&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/3082809.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 16 Oct 2008 10:25:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082809.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/10/16/3082809.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VB动态调用外部API函数的方法</title><link>http://blog.csdn.net/SupermanKing/archive/2008/09/28/2992218.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/2992218.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/2992218.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2992218</trackback:ping><description>这么久了都没放出过什么比较好的程序出来，让大家失望了。前段时间无聊搞了个类，今天拿出来和大家分享一下。主要是实现在VB中动态调用API函数的类，才疏学浅，见笑了。&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/2992218.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 28 Sep 2008 22:35:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/09/28/2992218.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/09/28/2992218.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>让TextBox只输入金额或数字的方法，显示的时候很漂亮，输入的时候很方便</title><link>http://blog.csdn.net/SupermanKing/archive/2008/09/22/2959044.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/2959044.aspx</wfw:comment><slash:comments>5</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/2959044.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2959044</trackback:ping><description>Visual Basic CodePrivateSub Form_Load (   )        Text1.Tag   =   0      Text1_LostFocusEndSubPrivateSub Text1_GotFocus (   )        Text1.Text   =   Text1.Tag      Text1.SelStart   =   0      Text1.SelLength   =   Len ( Text1.Text )  EndSubPrivateSub Text1_KeyPress ( KeyAscii AsInteger )        If KeyAscii &gt; =   Asc ( &quot;0&quot; )   And KeyAscii &lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/2959044.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 Sep 2008 10:39:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/09/22/2959044.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/09/22/2959044.aspx</guid><dc:creator>SupermanKing</dc:creator></item><item><title>VB取得DOS方式的路径地址</title><link>http://blog.csdn.net/SupermanKing/archive/2008/09/20/2956211.aspx</link><wfw:comment>http://blog.csdn.net/SupermanKing/comments/2956211.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/SupermanKing/comments/commentRss/2956211.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2956211</trackback:ping><description>Visual                 Basic Code&lt;img src =&quot;http://blog.csdn.net/SupermanKing/aggbug/2956211.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 21 Sep 2008 02:44:00 +0800</pubDate><author>SupermanKing</author><comments>http://blog.csdn.net/SupermanKing/archive/2008/09/20/2956211.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/SupermanKing/archive/2008/09/20/2956211.aspx</guid><dc:creator>SupermanKing</dc:creator></item></channel></rss>