<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>VB文档</title>
<link>http://www.codeday.comhttp://document.codeday.com/vb/</link>
<description>编程文档 / VB文档</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2010 代码天下 版权所有 
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/372733.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://s4.cnzz.com/stat.php?id=137793&amp;web_id=137793&quot; language=&quot;JavaScript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&quot; + gaJsHost + &quot;google-analytics.com/ga.js type=text/javascript%3E%3C/script%3E&quot;));
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
try {
var pageTracker = _gat._getTracker(&quot;UA-435969-1&quot;);
pageTracker._trackPageview();
} catch(err) {}&lt;/script&gt;]]></generator>
<webmaster>codeday@gmail.com</webmaster>
<item>
    <title><![CDATA[用VB学做“黑客”程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/242991271494168.html</link>
    <description><![CDATA[只要掌握了原理，你也能写出一个所谓的“黑客”程序。下面笔者带领大家用VB亲自编写一个远程控制程序。从而揭开它的神秘面纱。 一、所用控件 在程序中将使用Winsock控件。Winsock控]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[封面的设计]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/242971271494166.html</link>
    <description><![CDATA[一、封面的设计是这样的，先出现一窗体，上面为你喜欢的图案。然后出现一艘从左向右行驶着的船。屏幕上方从两侧分别移动出“欢迎”两个字。具体的制作方法是：把预先选好的背]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[隐藏文本框控件的环境菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25521267712247.html</link>
    <description><![CDATA[各位vb高手： 本人想实现在文本框上单级击MOUSE右键弹出菜单，但总是 先出现windows的缺省的用于编辑文本的弹出式菜单，不知如何将其去掉？ 回答 Private Sub Text1_MouseDown(Button As Integer,]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个移动文件的简单方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25511267712247.html</link>
    <description><![CDATA[这个方法简单得不能再简单了。只需一行语句就可搞定。 Name]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[移动文件到回收站]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25501267712246.html</link>
    <description><![CDATA[移动文件到回收站 声明： Public Type SHFILEOPSTRUCT hwnd As Long wFunc As Long pFrom As String pTo As String fFlags As Integer fAnyOperationsAborted As Long hNameMappings As Long lpszProgressTitle As Long End Type Public Declare Fu]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改安装向导生成的缺省安装目录]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25491267712242.html</link>
    <description><![CDATA[使用安装向导生成程序， 缺省安装目录是在 Program File 下的， 要修改该缺省安装目录，只要打开已经生成的安装文件 Setup.1st： [Setup] 中的： DefaultDir=$(ProgramFiles)\XXXXXX 把 $(ProgramFiles) 换]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[压缩MDB文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25481267712241.html</link>
    <description><![CDATA[在Access97里, 我们可以开一个资料库后, 利用工具--]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示文件属性对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25471267712240.html</link>
    <description><![CDATA[利用ShellExecuteEx API函数可以调出文件的属性对话框。源代码如下： Private Type SHELLEXECUTEINFO cbSize As Long fMask As Long hWnd As Long lpVerb As String lpFile As String lpParameters As String lpDirectory As String nS]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示盘中所有的目录]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25461267712236.html</link>
    <description><![CDATA[以下的代码把盘中所有的目录都显示在 Listbox 中。需要一个 DriveListBox 和一个 DirListBox。如果 DirListBox 隐藏的话，处理可以快一些。 Dim iLevel As Integer, iMaxSize As Integer Dim i As Integer, j As In]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文本的加密与解密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25451267712235.html</link>
    <description><![CDATA[在VB中，由于随机数生成器是伪随机数，所以根据其原理可以用于文本的加密和解密，根据异或逻辑运算，加密和解密可以是同一个过程。 加密与解密函数代码如下。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在文本框中快速增加一串字符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25441267712232.html</link>
    <description><![CDATA[在文本框中快速增加一串字符有一种笨方法，可以让你将串字符插入文本框中文本的指定位置，那就是在插入点处将文本分割成两部分，再将要插入的字符同这两部分的文本拼接起来。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在打印字符串时自动换行]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25431267712231.html</link>
    <description><![CDATA[在打印字符串时自动换行其中 len1 为打印的宽度， Str 为打印的文本。 Do While Len(Str)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用两分法搜索列表框或组合框中的数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25421267712225.html</link>
    <description><![CDATA[下面的函数能让你在一个已作升序排列的列表框或组合框中查找符合条件的数据。 你可以实现精确查找或模糊查找。对这个程序稍微变一下，你就可以在一组已排好序的数组中查找符合]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在 Textbox 中，录入 N 个字符后移到下栏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25411267712224.html</link>
    <description><![CDATA[在 Textbox 中，录入 N 个字符后移到下栏 在 Textbox 的 Change 中加入： IF (LEN(TEXT1))]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中使用艺术字]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25401267712222.html</link>
    <description><![CDATA[在使用Office 97时，可以在Word 97、PowerPoint 97等环境中，利用“艺术字”(WordArt)工具创建出各式各样精彩的“艺术字”效果，着实令人赏心悦目。要是在VB中也能使用，那该多好！其实，在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB进行文本文件的再处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25391267712212.html</link>
    <description><![CDATA[越来越多的人开始认识到Internet这一信息资源的巨大宝库，但是把信息从网上下载下来后，繁杂多样的文件格式却给整理、使用带来相当大的麻烦。有的由于系统平台的变化，甚至显示出]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用OleDragdrop事件接受拖放文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25381267712208.html</link>
    <description><![CDATA[怎样在VB5中使用OLEDRAGDROP事件从WINDOWS EXPLORER中拖放文件 本文将介绍怎样在你的VB5应用程序中使用OLEDRAGDROP 事件从WINDOWS EXPLORER拖放文件。以往的做法要仔细区分和捕捉事件的特定消息，而]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用API复制移动文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25371267712206.html</link>
    <description><![CDATA[在标准模块中添加以下代码： Declare Function SHFileOperation Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动选择 Text 的内容]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25361267712204.html</link>
    <description><![CDATA[自动选择 Text 的内容 在使用 VFP 的应用进行录入时，每进入一个录入框，就自动选择该框中的所有 内容。利用以下的代码，也可实现类似的功能。 Private Sub MyTextBox_GotFocus() AutoSelect MyT]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动出现动画、进度和确认的文件操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25351267712203.html</link>
    <description><![CDATA[自动出现动画、进度和确认的文件操作 使用以下的 API ， 得到与资源管理器相同的感觉！ Private Type SHFILEOPSTRUCT hwnd As Long wFunc As Long pFrom As String pTo As String fFlags As Integer fAnyOperationsAbort]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自定义Text的pop-up菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25341267712201.html</link>
    <description><![CDATA[自定义Text的pop-up菜单 在 Windows 95, 右击 Textbox 将出现基本的编辑菜单。如果你想改变该菜单， 可将以下的代码放到 Textbox 的 MouseDown 事件中。 If Button = vbRightButton Then Text1.Enabled = False T]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[资源档(.RES)的应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25331267712199.html</link>
    <description><![CDATA[资源档有什么用处呢？最重要的有两个地方 1.国际发行：我们将Application中所有的文字从Resource用读取，那么，只要更动Resource档的内容，就可以用不同语言的方式来显示。 2.管理资源：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作一个有参数的执行文件(方法之简单难以想像]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25321267712197.html</link>
    <description><![CDATA[制作一个有参数的执行文件(方法之简单难以想像）]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样从文件列表框中取得文件的完整路径和名称]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25311267712196.html</link>
    <description><![CDATA[怎样从文件列表框中取得文件的完整路径和名称 Private Sub File1_Click() Dim sFile As String]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在文本框中实现由加减号输入数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25301267712195.html</link>
    <description><![CDATA[在文本框中实现由加减号输入数据 下面的例子以输入日期为例，向你演示如何用加号或减号来向文本框中输入数据。 本例的关键是使用VB的DateAdd()函数。该函数允许你加减日期、月份及]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB用GDI 把图片保存为JPEG（即JPG）格式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25291267712192.html</link>
    <description><![CDATA[这个功能用到的地方很多，GDI 是系统的工具，但是发布较晚，所以没有完全普及。我写这篇文章应用到他的部分功能，给大家参考参考。 这个函数可以将 StdPicture 对象用 GDI 解码器保存]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在引用项目找不到Excel、Word等Office软体Lib的解决]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25281267712190.html</link>
    <description><![CDATA[在引用项目找不到Excel、Word等Office软体Lib的解决法 ●底下有些文章是如何把资料丢到Office软体来帮我们列印，为了加快程式的开发速度，小瓜瓜会选择载入Lib的方式来把应用程式当成]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现图片格式转换BMP转JPG]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25271267712186.html</link>
    <description><![CDATA[代码如下: 模块: Option Explicit]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Picture对象相关操作图象转换(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25261267712181.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Picture对象相关操作图象转换(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25251267712178.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB做的五子棋源码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25241267712177.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图片的又一显示模式——雨滴式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25231267712176.html</link>
    <description><![CDATA[程序开始前需要在窗体上加入两个PictureBox(picture1中加载一张图片)，一个Command按键 Option Explicit Private Declare Function BitBlt Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB进制转换(二)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25221267712172.html</link>
    <description><![CDATA[更好的代码： Public Function cTon(ByVal sInNum As String, ByVal n As Double) As String]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB进制转换(一)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25211267712170.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络三名词详解——HTTP协议,session,cookie]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25201267712167.html</link>
    <description><![CDATA[HTTP Session 一、浅析 HTTP协议（http://www.w3.org/Protocols/）是“一次性单向”协议。 服务端不能主动连接客户端，只能被动等待并答复客户端请求。客户端连接服务端，发出一个HTTP Request，服]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB编写登录程序，从数据库或者网络上读用户数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25191267712166.html</link>
    <description><![CDATA[我们在进入Windows操作系统或者是登陆QQ等软件时时会出现一个登录对话框，要求用户输入密码后才能进入系统或者QQ。我们用VB也可以编写这样的登录窗口，其具体方法如下： 界面设计：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断一个端口是否被占用，可做端口扫描程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25181267712165.html</link>
    <description><![CDATA[Private Function PortInUse(ByVal PortNumber As Integer) As _ Boolean]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现自动取得服务器IP并连接服务器(利用UDP广播]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25171267712162.html</link>
    <description><![CDATA[普通的讲解WINSOCK控件等网络控件的用法的资料中，无论是使用TCP还是UDP，客户端程序连接服务端程序时，无一例外的要指定IP地址(或机器名)和端口号，那么，在端口已知而服务端程序所]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Inet控件(又叫Internet Transfer 控件)的详细用法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25161267712160.html</link>
    <description><![CDATA[Inet控件也叫Internet Transfer 控件，这个控件封装了http协议以及ftp协议，使用起来非常方便。所以大家经常使用。然而大家通常使用的只是其部分功能，接下来我们讲一下它的全部详细功能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[winsock控件和inet控件发送http协议数据包]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25151267712159.html</link>
    <description><![CDATA[http协议，自己组建http协议的数据包，然后用winsock将这个http数据包发送出去。其中包括GET方式和POST方式。要注意的是在请求字段里面如果有 Accept-Encoding: gzip, deflate 这句是一个要求服务]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB界面布局设计原则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25141267712157.html</link>
    <description><![CDATA[我在工作中总结了一些有关界面设计与测试的规范，与大家共享。 界面设计与测试规则 界面是软件与用户交互的最直接的层，界面的好坏决定用户对软件的第一印象。而且设计良好的界]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎么使用VB6的UseMnemonic属性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25131267712154.html</link>
    <description><![CDATA[VB6的标签(Label)控件通过包括一个符号(]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[进程Explorer 崩溃后的任务栏图标重新创建]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25121267712151.html</link>
    <description><![CDATA[我们常使用任务栏图标，,但是如果在软件运行过程中,Explorer 出现异常而重新启动(即Explorer.exe被关闭后重新运行)了,任务栏图标会消失而不是跟着重新出现。要解决这个问题,需要使用一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB做QQ连连看外挂全过程（含源代码）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25111267712147.html</link>
    <description><![CDATA[直接开始看制作全过程。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[系统进程标识符转为窗口句柄(PID2hWnd)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25101267712147.html</link>
    <description><![CDATA[下面代码实现： Option Explicit Private Const GW_HWNDNEXT As Long = 2 Private Declare Function GetParent Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB模拟键盘按键动作 Sendkeys]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25091267712145.html</link>
    <description><![CDATA[将一个或多个按键（注意可以是多个）消息发送到活动窗口，就如同在键盘上进行输入一样。 语法 SendKeys string[, wait] SendKeys 语句的语法具有以下几个命名参数： 部分 描述 string 必需的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[替代VB自带的Timer控件的Timer类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25081267712141.html</link>
    <description><![CDATA[标准模块(mTimer): Option Explicit Private Declare Sub CopyMemory Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB修改窗体的系统菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25071267712140.html</link>
    <description><![CDATA[现在的人都讲究追求个性，而windows窗体都是千篇一律。比如那个系统菜单，就是左上角的那个最大化最小化的菜单。下面我们来讲一下怎么用vb编写含有自己系统菜单的窗体。 方法：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB注册系统全局快捷键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25061267712138.html</link>
    <description><![CDATA[我们使用的大多数软件几乎都有快捷键，比如photoshop里面的快捷键给我们提供了很大的便捷。怎么才能让我们做的程序也具备这个功能呢，下面让我们来看一个实例。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现自我注册控件,即使使用控件也能做绿色软]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25051267712134.html</link>
    <description><![CDATA[VB编程中合理的使用第三方控件，往往能够事半功倍。但是使用第三方控件也有不好的地方，那就是为了保证程序正常运行，必须使程序能够在系统目录或程序目录下找到所用的第三方控]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB取得本机CPU 序列号]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25041267712134.html</link>
    <description><![CDATA[仅仅几行代码实现取得本机CPU序列号，可以使用此序列号实现程序的注册功能。个人感觉使用CPU序列号注册比使用硬盘序列号更为适合。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb随机数之Rnd 函数和Randomize函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25031267712133.html</link>
    <description><![CDATA[Rnd 函数 返回一个包含随机数值的 Single。 语法原型 Rnd[(number)] 可选的 number 参数是 Single 或任何有效的数值表达式。 返回值 如果 number 的值是 Rnd 生成 小于 0 每次都使用 number 作为随机数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB做曲线拟合]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25021267712130.html</link>
    <description><![CDATA[最小二乘法多次曲线拟合的VB实现]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB所有语句总结（包括简单功能介绍）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25011267712127.html</link>
    <description><![CDATA[下面对VB的几乎所有语句进行简单的分类和介绍。 需要注意的是这里介绍的几乎都是语句，而不是函数，请大家注意VB语句和函数的区别。 一.数据类型、变量、常量类 Dim 模块级或过程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Access数据库保存数据范例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/25001267712127.html</link>
    <description><![CDATA[这个实例可做为一个数据库连接、添加记录的简单模版。更多的功能可在此代码基础上自己添加。 你每次获取数据后调用数据添加的过程进行实时保存数据就可以了 在新建VB工程之后先]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在列表框(ListBox)中自动查找,类似MSDN索引功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24991267712124.html</link>
    <description><![CDATA[列表框拥有定位功能，它就会自动滚动到第一项，以你所输入的字母为开始。然而，它不会在多于第一个字母的情况下，自动选择项目。比如，如果你输入”ap”,你也许想要控制选择以]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GetSystemMetrics函数参数nIndex的定义]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24981267712122.html</link>
    <description><![CDATA[下面是GetSystemMetrics函数参数nIndex的定义： SM_ARRANGE Flags specifying how the system arranged minimized windows. For more information about minimized windows, see the following Remarks section. SM_CLEANBOOT 返回系统启动方式]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB利用API获取CPU型号]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24971267712121.html</link>
    <description><![CDATA[Private Const PROCESSOR_ALPHA_21064 As Long = 21064 Private Const PROCESSOR_ARCHITECTURE_ALPHA As Long = 2 Private Const PROCESSOR_ARCHITECTURE_ALPHA64 As Long = 7 Private Const PROCESSOR_ARCHITECTURE_ARM As Long = 5 Private Const PROCESSOR_]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图标（ico，cur）文件的结构解析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24961267712119.html</link>
    <description><![CDATA[因为编写一个图标编辑程序，分析了一下图标的文件格式，颇有一些心得，写出来与各位兄弟共享。（笔者注：以下所说的图标均为调色板模式的图标，真彩图标会特别注明） 一、从图]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb使用正则表达式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24951267712116.html</link>
    <description><![CDATA[下面按照下面的步骤开始做： 1. 启动 Microsoft Visual Basic 6.0。 2. 在“文件”菜单上，单击“新建项目”。 3. 在“新建项目”对话框中，单击“Standard Exe”，然后单击“确定”。 默认情况]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将多个连续的空格合并成一个]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24941267712111.html</link>
    <description><![CDATA[很多时候我们会遇到这样的问题 比如我们有一个字符串 112 3 44 123 我们想把字符串中的数字读入到变量或者是数组中。而他们之间的空格数目又很随机。无法直接用split函数分割，这时我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB结合MATLAB完美编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24931267712110.html</link>
    <description><![CDATA[MATLAB是MathWorks公司开发的科学计算环境,具有强大的计算绘图能力,提供大量的函数库]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB抽奖程序源码(无聊时写的)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24921267712109.html</link>
    <description><![CDATA[Private Declare Function GetWindowLong Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中以C开头的各个数据类型转换函数以及进制转]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24911267712104.html</link>
    <description><![CDATA[VB中,提供了很多数据类型转换的函数(大部分以C开头),特别是各种进制数据的转换以及字符串和数字的转换函数,本文将对这些函数做一个简单的小结. 1. 各种进制转换函数 一般的数据进制]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6中使用XML完全教程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24901267712102.html</link>
    <description><![CDATA[现在XML的使用越来越普遍，大有代替普通数据库和ini之趋势（个人观点，呵呵），然后VB6却不提供直接的支持，因为VB6出的太早了，那时还没XML呢，怎么支持啊，嘿嘿。 而本篇文章将详]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB数据类型转换及进制转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24891267712098.html</link>
    <description><![CDATA[VB中,提供了很多数据类型转换的函数(大部分以C开头),特别是各种进制数据的转换以及字符串和数字的转换函数,本文将对这些函数做一个简单的小结. 1. 各种进制转换函数 一般的数据进制]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[支持函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24881267712096.html</link>
    <description><![CDATA[SetChartOptions函数 该函数用来设置图表类型、大小。 Public Sub SetChartOptions(ByVal iXlChartType As xlChartType, _ ByVal iPlotAreaWidth As Integer, ByVal iPlotAreaHeight As Integer) With oExcelChart .ChartType = iXlChartType]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6显示文件的属性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24871267712094.html</link>
    <description><![CDATA[如果你在资源管理器中右键点击一个文件，然后选择属性，Windows 就会弹出一个对话框显示有关这个文件的各种信息，包括文件大小，创建及修改日期，以及属性（只读或隐藏）。在 V]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在应用程序中实现关机功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24861267712093.html</link>
    <description><![CDATA[VB 6.0开发应用程序时，用户要求在程序内部加入直接关机功能， 使操作全部集中于应用程序的内部进行。为此，笔者编制程序，进行Windows API函数调用，成功地实现了Windows 9x“关闭系统]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[要小心使用VB6的比较操作符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24851267712089.html</link>
    <description><![CDATA[VB中（当然其他语言也是这样）在条件句里使用两个或更多的比较是很常见的，就像下面这样： If X]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用VB6 TypeOf关键字进行控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24841267712088.html</link>
    <description><![CDATA[有些时候，我们想用VB6表单中的某一类型的控件来做些事情。例如，你可能想将所有文本框的前景颜色都改为红色。 应用Form.Controls集，你可以很方便地将表单上的所有控件连接起来。但]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6中双精度和单精度数据类型的比较]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24831267712087.html</link>
    <description><![CDATA[单精度（Single）和双精度（Double）数据类型是VB6里的两种浮点类型；它们被用来保存带有小数的数值。小数的位数可以变化（所以名字叫]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立一个重复激发(事件)的VB6命令按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24821267712083.html</link>
    <description><![CDATA[VB6中每次点击时，VB6命令按钮正常激发一个事件。但是，你可能想建立一个重复激发事件的按钮。 按照下面的步骤，你就可以建立一个命令按钮，只要按钮被按下（只要用户没有释放鼠]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何建立控制台窗口以及同窗口交互]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24811267712080.html</link>
    <description><![CDATA[如何建立控制台窗口 以及让用户在其中输入字符同计算机进行交互对话。 首先在选VB菜单中的 Project | Module 项向工程文件中加入一个模块，然后在这个Module中加入以下代码： Option Expl]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过开发VB插件来扩展VB应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24801267712079.html</link>
    <description><![CDATA[使用插件功能扩展VB]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIf语句使用方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24791267712078.html</link>
    <description><![CDATA[函数主要功能根据表达式的值，来返回两部分中的其中一个。 语法 IIf(expr, truepart, falsepart) 格式 变量=IIf（条件，true部分，False部分） IIf 函数的语法含有下面这些命名参数： 部分 描述]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB下几个非常有用的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24781267712074.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[核心函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24771267712071.html</link>
    <description><![CDATA[SetChartWithDataProps函数 该函数设置图表对象的一些默认属性值。 Private Sub SetChartWithDataProps() With oExcelChart .HasLegend = True .Legend.Position = xlLegendPositionTop .WallsAndGridlines2D = True .PlotArea.Height = 2]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全局变量和枚举常量]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24761267712071.html</link>
    <description><![CDATA[首先我们要定义一些Excel对象变量： Private oExcelApp As Excel.ApplicationPrivate oExcelSheet As Excel.WorksheetPublic oExcelChart As Excel.Chart oExcelApp对象代表着一个独立的Excel应用实例。它由ExcelChart组件初始]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SetBackgroundEffect函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24751267712069.html</link>
    <description><![CDATA[该函数用来设置图表的特殊效果。 Sub SetBackgroundEffect(ByVal iXlChartFillEffect As xlChartFillEffect)On Error GoTo hError]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ExportToGIF函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24741267712066.html</link>
    <description><![CDATA[该函数将Excel图表导出为指定的GIF文件。 Public Function ExportToGif(ByVal strFileName As String)On Error GoTo hError]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SetXAxisHeadings函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24731267712063.html</link>
    <description><![CDATA[Sub SetXAxisHeadings(ByVal oRs As ADODB.Recordset, ByVal strValueCol As String) Dim iCount As Integer Dim iRow, iCol As Integer Dim nMaxRows As Integer Dim oFill As Excel.ChartFillFormat]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现SQLServer数据库备份/恢复]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24721267712060.html</link>
    <description><![CDATA[Public Function fBackupDatabase_a(ByVal sBackUpfileName$ _ , ByVal sDataBaseName$ _ , Optional ByVal sIsAddBackup As Boolean = False _ ) As String Dim iDb As ADODB.Connection Dim iConcStr$, iSql$, iReturn$ On Error GoTo lbErr]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用DataReport打印查询结果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24711267712060.html</link>
    <description><![CDATA[如果我们想把查询结果打印出来，那么我们经常用到Data Report，在这里我说的是直接用记录集rs给Data Report设数据源。为了快速将查询结果中的字段加入到Data Report，我们先来建一个DataE]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[认识VB的文件系统对象FSO]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24701267712058.html</link>
    <description><![CDATA[在 VB 编程中经常需要和文件系统打交道，比如获取硬盘的剩余空间、判断文件夹或文件是否存在等。在VB 推出文件系统对象(File System Object)以前，完成这些功能需要调用 Windows API 函数或]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB ADO检测数据库并发操作和处理并解决并发冲突]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24691267712055.html</link>
    <description><![CDATA[下面讲述VB ADO来处理并发操作的实际案例： 在以前DAO中可以对数据库进行记录锁，页面锁，表锁来处理并发操作，还可以使用事务处理，那么现在怎么用ADO来检测并处理数据库的并发操]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB贪吃蛇游戏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24681267712053.html</link>
    <description><![CDATA[（一）开始新游戏 1.1 获取并应用各个参数（当前级别，控制键等），初始化随机数（Randomize）。 1.2 清除地图上的所有物品，各个统计数值置零。 1.3 初始化地图：布置食物，炸弹，蛇]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[平铺与拉伸MDI窗口的背景图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24671267712051.html</link>
    <description><![CDATA[Microsoft Visual Basic 的MDI窗口虽然可以通过窗口的PICTURE属性设置窗口的背景图，使程序美化了不少。但是图片加载之后当窗口在不同的分辨率下，会出现缺口的现象，比如在800*600下设计的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用vb6的ActiveX控件实现异步下载]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24661267712049.html</link>
    <description><![CDATA[Option Explicit Event DownloadProgress(CurBytes As Long, MaxBytes As Long, SaveFile As String) Event DownloadError(SaveFile As String) Event DownloadComplete(MaxBytes As Long, SaveFile As String)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于Winsock 的小型网络管理系统及其实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24651267712046.html</link>
    <description><![CDATA[本文主要讨论基于Internet上的小型网络信息管理系统的基本功能，并提供了其基于WinSock控件的构造方法。 关键词：WinSock,小型网络信息系统，登录机制，Internet数据传送 MNMS Based on WinSo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用EXCEL实现字符串的计算]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24641267712045.html</link>
    <description><![CDATA[如何计算给定的字符串计算表达式，如“ 1 2*3-4/5 6^7” 的值？笔者在使用EXCEL2002 时发现在单元格中可以输入此类表达式，输出的则是计算结果，所以写了一个函数，与大家共享。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[手机短信收发]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24631267712044.html</link>
    <description><![CDATA[中文字符以Unicode码来表示，所以在发送中文短消息之前必须首先将中文字符转换为Unicode码，下面的函数将实现这个功能。这个函数主要应用到VB自带的一个格式转换函数：ChrW（）将中文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用API实现字符串表达式的计算]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24621267712040.html</link>
    <description><![CDATA[Option Explicit Private Declare Function EbExecuteLine Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OutlookAdd-in(COM加载项)技术指南（三）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24611267712040.html</link>
    <description><![CDATA[2.1.2.3. IDTExtensibility2_OnStartupComplete事件 OnStartupComplete事件主要的工作就是，创建工具栏和按钮，如果它们不存在的话。 我们首先搜索Explorer对象的CommandBars集合，以察看我们的“短信速递]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[递归与排列]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24601267712036.html</link>
    <description><![CDATA[Private Sub Command1_Click()]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OutlookAdd-in(COM加载项)技术指南（四）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24591267712034.html</link>
    <description><![CDATA[2.3.2. g_oForwardBHandler_Click事件 这个按钮的名称是“转发”. 这个对话框中的内容将根据您选中的上下文而定，更详细内容参见下面章节。简单的说，我们将根据您选中的项是邮件，还是便]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OutlookAdd-in(COM加载项)技术指南（二）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24581267712031.html</link>
    <description><![CDATA[2.1.开发COM加载项 在VB中，首先需要引用“Microsoft Add-in Designer”类型库，该库包含了一些COM加载项必需的界面。 其次，Visual Basic中需要“Implements IDTExtensibility:smarttags]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OutlookAdd-in(COM加载项)技术指南（一）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24571267712031.html</link>
    <description><![CDATA[1.1. Office 2000 COM加载项 COM加载项是可以用于Office 2000的动态连接库（.Dll）。 COM加载项被明确注册为要通过Office 2000应用程序来加载。因为COM加载项被设计为DLL，所以它们可以在与主控程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Vb6中的多态]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24561267712029.html</link>
    <description><![CDATA[最近在写一个MDI窗体的程序，每调用一个子窗体时都要对其做一些操作。于是我就用一个SUB来做显示子窗体的操作 PrivateSubshowFrm(ByReftFrmAsForm) {代码。。。。。。} tFrm.show EndSub 假设有两个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运行时把ADO记录集对象Rs中的记录绑定到数据报表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24551267712024.html</link>
    <description><![CDATA[数据报表（DataReport）是一个报表帛作工具，通过拖放数据环境(Environment)窗体外的字段可以很容易的生成一个复杂的报表。但是有时能更想直接把数据报表(DataReport)联接到一个ActiveX数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB创建MSOFFICE的COM加载项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24541267712023.html</link>
    <description><![CDATA[可以用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己动手做个MSN信息群发软件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24531267712022.html</link>
    <description><![CDATA[MSN是目前网络上广泛使用的一个即时信息交流工具(IM)，笔者就常用它与同事或朋友联系，但是在使用过程中发现缺乏一个群发信息的功能，于是笔者寻思着自己编写一个MSN信息群发的软]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自制控件的属性保存(WriteProperties、ReadProperties)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24521267712016.html</link>
    <description><![CDATA[控件的属性在运行与设计模式切换时，属性值为丢失，可以要用WriteProperties来保存属性值，再用ReadProperties读取，具体情况如下： 1、在设计模式往运行模式切换时，先用WriteProperties保存]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic10个小编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24511267712014.html</link>
    <description><![CDATA[1、如果一行程序太长，能不能换行？]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[直接从RING3获取硬盘序列号]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24501267712012.html</link>
    <description><![CDATA[’通常情况下,我们通过=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[直接访问WebBrowser控件中的HTML源码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24491267712008.html</link>
    <description><![CDATA[html webbrowser.OleObject.document.documentelement.innerhtml; Text webbrowser.OleObject.document.documentelement.innerText; 为了实现在自己的程序中显示HTML文档，我们一般采用IE(Internet Explorer本文中简称为IE)发行时]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[连接加密的Access数据库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24481267712004.html</link>
    <description><![CDATA[一、建立数据库 因为在VisualBasic6.0中有的数据库连接方式不支持Access2000版本格式的数据库，为了便于说明问题，本文所提的数据库以Access97版本数据库为例。 在MicrosoftAccess97中建立一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VisualBasic操纵XML文档]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24471267712004.html</link>
    <description><![CDATA[对于XML文档，插入、修改、检索等数据操作工作可以通过一个XML解析器及其列举的一系列对象来完成。Microsoft的XML解析器驻留在名为msxml.dll的动态链接库文件中。因为msxml是一个COM对象，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让你的文本框“聪明”一点]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24461267712001.html</link>
    <description><![CDATA[近来在设计一个热键设置程序中我学会了使用Setwindowlong和Callwindowproc这两个Api函数，有了它我们就可以处理你的窗口或控件所接收到的任何消息.由于前一段时间我看过一篇介绍QQ密码监]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[API更改系统菜单条目]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24451267711996.html</link>
    <description><![CDATA[一个运用API更改系统菜单，复制系统菜单的例子。(需要注意的是：如果要响应菜单项的单击事件，可能要用到钩子函数和更多的代码） OptionExplicit PrivateDeclareFunctionTrackPopupMenuLibuser32]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MX记录获取组件（vb实现）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24441267711993.html</link>
    <description><![CDATA[方法： PublicFunctionGetDNSinfo()AsString 获取dns信息 PublicFunctionMX_Query(DNS_AddrAsString,ByValDomain_AddrAsString)AsString 获取mx最佳记录， dns_addr,域名解析服务器，可以用getdnsinfo获取，也可以用nslookup命]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[递归方法巧解不定方程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24431267711991.html</link>
    <description><![CDATA[PrivateSubCommand1_Click()’演示求X1 X2 X3 X4 X5=10整数解 Text1.Text= DimanswerAsString answer=GETRESULT(5,10,True)’赋值 Dimtemp temp=Split(answer,vbCrLf) Fori=0ToUBound(temp) temp(i)=解]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设置MSHFlexGrid的行标题和列标题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24421267711986.html</link>
    <description><![CDATA[使用MSHFlexGrid的FormatString属性可以做到一次设置行标题和列标题 DimsTitleAsString sTitle=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[美化MSHFlexGrid，隔行设置颜色的通用函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24411267711985.html</link>
    <description><![CDATA[’设置MSHFlexGrid每行的颜色 PublicSubSetRowColor(ByRefMSHFlexGridAsObject) Dimj,i,objName objName=TypeName(MSHFlexGrid) IfStrConv(Trim(objName),vbUpperCase)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中使用UnicodeAPI]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24401267711983.html</link>
    <description><![CDATA[VB在使用了Unicode之后，可以享受到Unicode所带来的各种好处。不过，麻烦也随之而来了…… 因为Windows95/98/ME不支持Unicode，而VB只支持Unicode，所以当从VB里调用一个非UnicodeAPI时，VB先要把所]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[以Oracle为例说明如何通过ODBC将数据库中的指定表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24391267711982.html</link>
    <description><![CDATA[首先假设ODBC中设置了一个Oracle的数据源，其数据库服务名为LinkDataBase，DSN为ORAODBC，用户名是Administrator，密码Password，把表Oracle_Table导入到C:\Temp.mdb的MDB_DATABASE，中间步骤链接表的名称为]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6自动编译组件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24381267711978.html</link>
    <description><![CDATA[自动将文件中vbp提取，编译为dll,将如下存为.vbs即可 ’Module :VBcompiler ’DateTime :03-5-3015:45 ’Author :HardyHe ’Purpose :VB6dll自动编译工具 ’sVBPath:VB6运行目录,sOutpath:输出dll目录,sSourcePath:VB源文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb实现多线程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24371267711977.html</link>
    <description><![CDATA[’请将该部分数据保存为FORM1.frm文件 VERSION5.00 BeginVB.FormForm1 Caption = 多线程 ClientHeight =3195 ClientLeft = 60 ClientTop =345 ClientWidth =6450 LinkTopic = Form1 ScaleHeight =3195 ScaleWidth =6450 StartUpPosition=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB语言编程实现JPEG数据压缩]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24361267711974.html</link>
    <description><![CDATA[JPEG压缩格式是目前图像处理领域里面用得最广泛的一种图像压缩方式，它的实现主要分成四个步骤： 1．颜色模式转换及采样； 2．DCT变换（离散余弦变换）； 3．量化； 4．编码（有算]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再谈在VB中调用VC  开发的DLL]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24351267711972.html</link>
    <description><![CDATA[①关于DLL的创建与调用 使用VC 的向导即可。具体操作如下：打开菜单“File\New”→选择“Projects\Win32Dynamic-LinkLibrary”→选择“AsimpleDLLproject”即可。这时系统会自动生成3个文件：*.cpp，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VB6.0设计ActiveXDLL事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24341267711970.html</link>
    <description><![CDATA[我们知道在设计ActiveXDLL程序的事件直接使用以下方法定义就可以，例如：PublicEventTracerView(IndexValueAsInteger,KeyValueAsString,TraceResultsAsString)就定义好了一个给EXE程序使用的事件。但我们也知]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB动态调用外部函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24331267711969.html</link>
    <description><![CDATA[VB可以用Declare声明来调用标准DLL的外部函数，但是其局限性也很明显：利用Declare我们只能载入在设计时通过Lib和Alias字句指定的函数指针！而不能在运行时指定由我们自己动态载入的函]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有用的技术和没用的指针]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24321267711966.html</link>
    <description><![CDATA[BillMcCarthy在那篇《ModifyaVarialbe’sPointer》里用SafeArray实现多进程的数组共享内存，他考虑了数组变量的类型，因此可以兼容大部分数值类型的数组，是一个非常不错的东西。我这里不讲它]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AD]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24311267711964.html</link>
    <description><![CDATA[ActiveDirectory（以下简称AD）可以认为是一个大的层次结构数据库，集中存储的内容必须遵循AD当前所定义的Schema。我觉得AD中最重要的内容就是Schema，然后是ADSI。 Schema定义了数据存储的格]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB打开任意盘(硬盘/U盘/光盘)的文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24301267711961.html</link>
    <description><![CDATA[在程序打包移植的时候，需要用到光盘/U盘。在不知道机子上的光盘的盘符是多少，或不知道盘符的类别和盘符的总数的话。 .........可以用如下方法来判断......... 要用到的API描述: 返回]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于VB算法 Picture Timer控件制作的39种动画效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24291267711959.html</link>
    <description><![CDATA[代码浏览： DimxiaoguoAsInteger ’选择产生的效果 DimwidAsLong ’显示器的宽 DimheiAsLong ’显示器的高 Dimpos1AsLong ’产生效果所必须的记数游标 DimcolorisAsInteger ’由用户选择的颜色效果,0=随机任]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB基础代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24281267711957.html</link>
    <description><![CDATA[PublicisDBAsBoolean PrivateSubForm_Load() DimconnStr,AccessLocationAsString AccessLocation=C:\db1.mdb connStr=Provider=Microsoft.Jet.OLEDB.4.0;DataSource=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在VB例程中接收自定义消息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24271267711952.html</link>
    <description><![CDATA[您可以用API函数SetWindowLong指定处理消息的窗口过程（windowprocedure）为自定义的函数WindowProc，捕获消息ID为WM_USER 1的自定义消息或系统消息。并且，为了保证窗口能正确的响应消息，需要]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB写高效的图像处理程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24261267711952.html</link>
    <description><![CDATA[从VB5开始，能以本机代码编译成exe文件，所以不存在代码执行速度的问题。那么，是什么拖慢了速度呢？就是PSet和SetPixel！PSet把浮点形式的坐标转为像素单位，再交给SetPixel处理。而S]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何发布IE控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24251267711951.html</link>
    <description><![CDATA[BeginningwithMicrosoft?InternetExplorer4.0,applicationdeveloperswhowanttoredistributeInternetExplorertechnologies梥uchastheWebBrowserControl,Wininet.dll,Urlmon.dll,orComctl32.dll(orCommonControlsDLL)梞ustobtainaroyalty-freeredistributionli]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CrystalReport(水晶报表)的报表封装成VB的DLL]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24241267711948.html</link>
    <description><![CDATA[CrystalReport(水晶报表)的设计器在VB中有很好的支持，使用设计器开发报表非常的方便，它不但拥有丰富的获取数据的数据源，还拥有良好的可编程接口的支持，是一般报表开发的首先。然]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在PC上通过手机发送短消息(续篇)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24231267711942.html</link>
    <description><![CDATA[打算接着写中文短信息的发送的,可是毕业论文时间实在太紧,一直耽搁下来了,这几天陆续有几个网友给我发邮件,关注这个话题的网友也比较多,而且CSDN邮件期刊也将我的那一篇文章收录]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[序列号检查程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24221267711938.html</link>
    <description><![CDATA[程序跟上次的“辨断你的Windows是正版还是盗版”差不多，但这个可以在2K/XP里用的：） VERSION5.00 BeginVB.FormfrmMain BorderStyle = 3 ’FixedDialog Caption = Dr.Watson ClientHeight = 2190 ClientLeft = 45 Clien]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb编程的七个优良习惯]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24211267711938.html</link>
    <description><![CDATA[1、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic的类对于面向对象的支持]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24201267711936.html</link>
    <description><![CDATA[VB最为人垢病的是它的面向对象特性。实际上VB是一种基于对象的开发工具。在VB中建立的类是支持继承的。下面是范例： 首先建立一个新工程，然后添加一个新的类模块(ClassModule)，类名]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic调试COM 组件遇到的问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24191267711932.html</link>
    <description><![CDATA[现象 用VisualBasic创建的COM组件放置到COM 中的某个应用下后，在某种情况下调试时，VisualBasicIDE会弹出如下对话框： ectratio=tv:ext=edit]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB计算农历的算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24181267711931.html</link>
    <description><![CDATA[FunctionGetYLDate(tYearAsInteger,tMonthAsInteger,tDayAsInteger,_ YLyearAsString,YLShuXingAsString,_ OptionalIsGetGlAsBoolean)AsString OnErrorResumeNext DimdaList(1900To2011)AsString*18 DimconDateAsDate,setDateAsDate DimAddMonthAsInteger,AddD]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MatthewCurland的VB函数指针调用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24171267711927.html</link>
    <description><![CDATA[从VisualBasic5.0开始Basic语言引入了一个重要的特性：AddressOf运算符。这个运算符能够让VB程序员直接体会到将自己的函数指针送出去的快感。比如我们在VB里就能够得到系统字体的列表，我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VisualBasic6.0到VisualBasic.NET的转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24161267711926.html</link>
    <description><![CDATA[MicrosoftVisualBasic.NET是MicrosoftVisualBasic]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6.0中调用API函数创建和使用逻辑字体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24151267711924.html</link>
    <description><![CDATA[我们在用VisualFoxPro或PowerBuilder等开发工具开发各种管理系统时，都要打印出一些各式各样的报表，在设计报表时，有时会遇到如下问题：报表的纵向数据列数太多，常用的宽行打印机(如]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软一模一样的记事本的源代码（5）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24141267711919.html</link>
    <description><![CDATA[TypeFormstate DeletedAsInteger DirtyAsInteger ColorAsLong EndType PublicFstateAsFormstate PublicFstringAsString PublicGstringAsString PublicSstringAsString PublicStartPosAsInteger PublicEndPosAsInteger PublicTchangeAsBoolean TypeFILETIME lLo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软一模一样的记事本的源代码（4）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24131267711918.html</link>
    <description><![CDATA[OptionExplicit PrivateSubCancelButton_Click() OKButton_Click Form1.Text1.SelText=Text2.Text EndSub PrivateSubCommand1_Click() IfFstring=Then Fstring=Text1.Text Else IfText1.Text]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软一模一样的记事本的源代码（3）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24121267711915.html</link>
    <description><![CDATA[PrivateDeclareFunctionSendMessageLibuser32AliasSendMessageA(ByValhwndAsLong,ByValwMsgAsLong,ByValwParamAsLong,lParamAsAny)AsLong PrivateConstEM_GETLINECOUNT=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软一模一样的记事本的源代码（2）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24111267711913.html</link>
    <description><![CDATA[PublicSubCommand1_Click() DimFoundPosAsInteger IfFstring=Then Fstring=Text1.Text Else IfText1.Text]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用VB编写自动反安装的程序？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24101267711913.html</link>
    <description><![CDATA[如果您安装了某一个软件之后，想要反安装，您有二个方法： 1、打开【控制面板】中的【添加删除新程序】，选择该软件來反安装。 2、选择【开始】【程序集】中软件所产生的程序組]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软一模一样的记事本的源代码（1）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24091267711911.html</link>
    <description><![CDATA[PrivateDeclareFunctionhtmlhelpLib_ hhctrl.ocxAliasHtmlHelpA_ (ByValhwndCallerAsLong,_ ByValpszFileAsString,ByVal_ uCommandAsLong,ByValdwDataAsLong)AsLong DimChangedAsBoolean DimButtonAsInteger PrivateTypeRect LeftAsLong TopAsLong RightAs]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用来建立可重用企业组件的设计模式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24081267711908.html</link>
    <description><![CDATA[本文详细说明用来设计可重用企业组件的一种方法。重点讨论一种已被证实的设计模式，该设计模式已由多个项目和客户实现，并进行了改进。 Engine-Collection-Class(ECC)设计模式是一种为分]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于VB的NativeCode的传奇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24071267711906.html</link>
    <description><![CDATA[有不少人从VB1.0开始就在用VB做着软件，VB一直以来就能编译，但总有人抱怨，VB编译的东西太慢了（p-code是以牺牲速度为代价的），于是VB开发小组经过长时间的激烈讨论，最终还是决定]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB程序大揭秘]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24051267711901.html</link>
    <description><![CDATA[1.VisualBasic程序概况 我用W32Dasm(Ver8.93)解开一个比较复杂的VB程序，其中用到了许多API函数比如GetPrivateProfileString、OSfCreateShellLink、SHBrowseForFolder等来自很多DLL的API。解开以后却发现程序只]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中简单使用HTMLHELP(*.chm)帮助]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24041267711899.html</link>
    <description><![CDATA[大家都知道在VisualBasic6中可以通过ActiveX控件“MicrosoftCommonDialogControl”调用WinHelp帮助文件，那么是否可以用同样的方法调用HTML帮助文件呢？ Iamsorry，答案是否定的。 但是VisualBasic6本身]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于VisualBasic6.0类开发(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24031267711895.html</link>
    <description><![CDATA[在VisualBasic6.0类的技术与应用（上）（以下简称上文）中，我们讨论了类的理论、类的创建和类的方法的编程实践，实际上，类之所以能够在软件工程中广泛应用，最主要的一点是它可以]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MSHFlexGrid控件的应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24021267711893.html</link>
    <description><![CDATA[1)mshflexgrid控件 与 msflexgrid控件 的异同 mshflexgrid控件与adodc控件绑定，msflexgrid控件与data控件绑定。 2)mshflexgrid控件的应用 如果记录集已经在程序中产生，则可以不与adodc控件绑定，直接在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OPENFILENAME新元素初探]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24011267711892.html</link>
    <description><![CDATA[从WindowsME、Windows2000开始，用于GetOpenFileName()和GetSaveFileName()函数的OPENFILENAME结构添加了三个新元素。我们先来看一下： TypeOPENFILENAME lStructSizeAsLong hWndOwnerAsLong hInstanceAsLong lpstrFilterAsStri]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[base64编码和解码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/24001267711888.html</link>
    <description><![CDATA[一般大多数包含=的不是Base64编码格式,只有quoted-printable编码格式才会经常出现=虽然都是MIME编码,但是算法不一样,quoted-printable的我不太清楚.讲一下Base64的吧. Base64算法是把3个8位字]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入ScriptingRuntimeLibrary之二]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23991267711885.html</link>
    <description><![CDATA[上一次我向大家介绍了利用ScriptingRuntimeLibrary获取驱动器信息、对文件夹以及文件进行操作的方法，这里介绍的是ScriptingRuntimeLibrary一个不起眼但是比较有用的对象——Dictionary对象 如果]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入ScriptingRuntimeLibrary之一]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23981267711883.html</link>
    <description><![CDATA[什么是ScriptingRuntimeLibrary？按照一般的说法，ScriptingRuntimeLibrary（以下简称SR）提供了微软“忘记”放到VisualBasic中的基本的文件系统操作函数何对象。 点击菜单的Project|Referrences项，在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于VisualBasic6.0类开发(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23971267711882.html</link>
    <description><![CDATA[对程序员和编程爱好者来说，VB中类的技术是学习中的一个难点，在大型软件的开发过程中，模块（Moudle)、控件（Activeocx)、链接库（Activedll)和类（Classmoudle)构成了系统化、高效化的软件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将你的VisualBasic6.0移植到VisualBasic.NET]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23961267711875.html</link>
    <description><![CDATA[本文推荐给那些准备将自己的应用移植到VisualBasic.NET中的VisualBasic开发者。文章中包括VisualBasic.NET的新特性、升级工具的信息的介绍以及将VisualBasic6结构平滑升级到VisualBasic.NET的指导 标]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB7新特性预览]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23951267711875.html</link>
    <description><![CDATA[微软宣布了在VB7中会包含的一系列令人激动的新特性。微软还表示VB的这一新版本将在约一年后发布，所以现在想急于用到VB7的朋友们呢，恐怕还得耐心地等待一段时间。不过现在，我们]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[针对MicrosoftVisualBasic用户的ASP 和Web窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23941267711872.html</link>
    <description><![CDATA[本文讨论如何习惯于使用ASP 和WebForms设计器。该程序针对不熟悉Web开发的MicrosoftVisualBasic或类似的GUI编程工具的传统用户。 您已经具备的技能 如果您使用MicrosoftVisualBasic但又不熟悉Web开]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用WSH读写注册表和建立快捷方式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23931267711870.html</link>
    <description><![CDATA[这里，我们只讨论读写注册表和建立快捷方式。 首先在工程的References中选中WindowsScriptingHostObjectModel，再来看一下下面的代码。 DimWSH_shell,urlLink,deskPath SetWSH_shell=NewIWshShell_Class WSH_shell.]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBIGMP]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23921267711868.html</link>
    <description><![CDATA[OptionExplicit PrivateTypeSockAddr’華硊賦凳 sin_familyAsInteger sin_portAsInteger sin_addrAsString*4 sin_zeroAsString*8 EndType PrivateTypeT_WSA ’SOCKET唳掛陓洘賦凳 wVersionAsInteger wHighVersionAsInteger szDescription(0To255)A]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将VisualBasic6.0程序转换到VisualBasic.NET]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23911267711867.html</link>
    <description><![CDATA[MicrosoftVisualBasic.NET是MicrosoftVisualBasic]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic的未来预告]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23901267711863.html</link>
    <description><![CDATA[对于面向对象编程语言的宠儿VisualBasic，微软将作如何的改进？ 概述:下一个版本的MicrosoftVisualBasic主要有以下三方面的改进：WebForms、Webservices和面向对象的语法方面的改进。WebForms使得]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[窗体注册表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23891267711859.html</link>
    <description><![CDATA[窗体注册表是Web存储系统(WSS)引进的一项关键技术。该注册表将基于Web的窗体（ActiveServerPage或HTML）绑定到特定类型的数据。这样，系统可以在提交HTTP请求时忽略数据的处理方式。绑定通]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBCOMTUTORIAL(3)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23881267711859.html</link>
    <description><![CDATA[InVisualBasic,buildingaCOM-compatibleobjectisdeceptivelyeasy: giventheclassdefinitionforthisobject,yousimplyaddtheclasstoaparticulartypeofVBproject,maketheproject,andyou’redone.That’sit,endoftutorial! Inrealityofcourse,there’smoretoVBC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBCOMTUTORIAL(2)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23871267711851.html</link>
    <description><![CDATA[COMprogrammingisbasedonanobject-orientedstyleofprogramming.InVB,thismeanstheuseofclassesandclass-basedobjectreferences.Ifyouarecomfortabledefiningyourownclasseswithlogicalpropertiesandmethods,andthenusingtheseclassestoinstantiateandmanipulat]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBCOMTUTORIAL(1)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23861267711850.html</link>
    <description><![CDATA[Thisweb-basedtutorialwillguideyouthroughatouroftheMicrosoftComponentObjectModel(COM)fromtheperspectiveofVisualBasic.ItisnotintendedtobeacomprehensivecoverageofVBCOMbutanintroduction.Ourgoalsarethefollowing: Tohelpyouunderstandthemotivesbehin]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic使用技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23851267711849.html</link>
    <description><![CDATA[1防止程序被重复运行 如果你不希望你的VB应用程序被别人通过多次双击图标而重复运行，导致内存不足或其它意外，你可以在程序中增加以下几行： PrivateSubForm_Load ifappprevinstancethen]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[0、(空字串)、Null、Empty、与Nothing的区别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23841267711846.html</link>
    <description><![CDATA[0、(空字串)、Null、Empty、与Nothing的区别先回答以下问题吧！经过以下的叙述之后，变量A、B、C、D分别等于0、 、Null、Empty、Nothing的哪一个？ DimA DimBAsString DimCAsInteger DimDAsObject A等于]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现.net框架带有无限参数的WriteLine()函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23831267711843.html</link>
    <description><![CDATA[.netFramework库中的Console.WriteLine最多只支持3个参数，使用起来非常不方便，虽然C 支持一个无限参数的WriteLine，但是VB和C#和其他大量语言都不支持。现在，我编写了一个VB的函数，他利用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在TEXT文本框中只允许输入数字和小数点，如何实]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23821267711841.html</link>
    <description><![CDATA[PrivateSubText1_KeyPress(KeyAsciiAsInteger) If(Chr(KeyAscii)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让标题栏文字居中]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23811267711839.html</link>
    <description><![CDATA[添加以下模块： PublicSubCenterC(frmAsForm) DimSpcFAsInteger’Howmanyspacescanfit DimclenAsInteger’captionlength DimoldcAsString’oldcaption DimiAsInteger’notimportant ’removeanyspacesattheendsofthecaption ’veryeasyifyoureadi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UnicodevsAnsi]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23801267711838.html</link>
    <description><![CDATA[VisualBasic32-bit版本的字串处理采用Unicode，也就是说字串在VB内部是以Unicode的格式来存放。 何谓Unicode？简单的说，就是每一个字元都是以2-byte的型式表示，而每个「实体字元」就是一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中的Unicode和Ansi格式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23791267711834.html</link>
    <description><![CDATA[VisualBasic32-bit版本的字串处理采用Unicode，也就是说字串在VB内部是以Unicode的格式来存放。 何谓Unicode？简单的说，就是每一个字符都是以2-byte的形式表示，而每个「实体字符」就是一个「]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使发布的VB程序带有最少量的库文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23781267711833.html</link>
    <description><![CDATA[用VB6编译成的EXE文件,运行时需要一个‘运行时’文件，即VB运行库.在VB6里是MSVBVM60.DLL在VB5里是MSVBVM50.DLL，VB5的这个文件在WIN98里是操作系统自代的。而VB6则没有，在用VB6的“Package]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在vb中如何区分一个变量值为中文还是英文字母]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23771267711830.html</link>
    <description><![CDATA[Dimi% Fori=1ToLen(Text1.Text) MsgBoxAsc(Mid(Text1.Text,i,1)) Next ’asc值在0-255为标准ascii字符你查查msdn可以找到英文字母的ascii值，当返回的值是5位数，则肯定不是英文字符，但有可能是日韩或其他非]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[发现剪帖板的秘密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23761267711826.html</link>
    <description><![CDATA[Windows中的Ctrl C和Ctrl V大家应该很熟悉了，但是您知道剪帖板里有啥？ 举个例子，在IE4中选一段东东，按Ctrl C，然后在FrontPage中按Ctrl V，您选的东东完整地拷贝到了FrontPage中，字体，颜]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB5.0与WindowsAPI间的呼叫技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23751267711826.html</link>
    <description><![CDATA[一般会使用WINDOWAPI的情况，实在是因为VB本身不提供某些功能，但是，程式所需又不得不然，例如：读取Registry内的资料，VB只提供SaveSetting、Getsetting等系列的指令，但是它只能读取特定]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Win95系统API函数大揭秘]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23741267711821.html</link>
    <description><![CDATA[Win95以其崭新精致的外观、简便快捷的操作方式，让你尽享操作平台之乐趣。同属Microsoft公司的VisualBasic不仅仅是一门计算机语言,还是一个集应用程序开发、测试、查错功能于一体的功能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB==快速调用系统对话框(全)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23731267711819.html</link>
    <description><![CDATA[Windows系统给我们提供了许多非常实用的功能，而且都是以对话框的形式展现在用户眼前，比如：查找文件、浏览选择后执行程序，等等...如果我们能在程序中以简练的代码快速调用它们]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VisualBasic中终止Windows95]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23721267711817.html</link>
    <description><![CDATA[在VisualBasic程序中，可以使用WindowsAPI函数来重新启动计算机系统，文本介绍如何退出Windows95并关闭计算机系统。 #关闭计算机系统 可以使用WindowsAPI的ExitWindowsEx函数来从VisualBasic程序中重]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[屏幕抓字技术揭密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23711267711812.html</link>
    <description><![CDATA[一公开它！ 四通利方和金山词霸的用户都曾见识过屏幕抓字技术，鼠标指哪就翻译哪个单词，这个技术看似简单，其实在WINDOWS系统中实现却是非常复杂和有趣的。经过半年多的艰辛探索]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断字符串是否是合法的EMail]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23701267711811.html</link>
    <description><![CDATA[PublicFunctionIsValidEmail(strEmailAsString)AsBoolean Dimnames,name,i,c IsValidEmail=True names=Split(strEmail,@) IfUBound(names)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似于C语言的printf函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23691267711808.html</link>
    <description><![CDATA[ThefunctionfmthelpsyoutoformatastringinVBScriptasyoudoinC. InC,ifyouwrite: printf(thisis%snumber%d,test,1); thenyouwouldusethefunctionfmtinVBScriptlikethis: dimstr str=fmt(thisis%xnumber%x,Array(test,1)) Details Thecompletefunctionlo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调用API函数得到磁盘上剩余空间的值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23681267711807.html</link>
    <description><![CDATA[最直接的方法是调用API函数GetDiskFreeSpace,函数声明如下: 声明： DeclareFunctionGetDiskFreeSpaceLibkernel32Alias GetDiskFreeSpaceA(ByVallpRootPathNameAsString,lpSectorsPerCluster AsLong,lpBytesPerSectorAsLong,lpNumberOf]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变Win98的Shell]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23671267711805.html</link>
    <description><![CDATA[如果你用过组件编程,你肯定熟悉Regsvr32.exe.一般来说,注册/反注册部件都可以利用它完成.但是如果有众多的控件需要管理,每次都要在运行对话框敲入regsvr32.....的命令很繁.其实留心一点]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中使用系统注册表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23661267711803.html</link>
    <description><![CDATA[ini文件大多用来寸放自己界面或者初始化信息，而应用程序要使用系统信息或者说要得知已在系统注册过的其他程序的一些信息就要读去系统注册表了，比如有些应用需要使用调用MSOu]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分辨率、卷标、序列号、分区表的读出]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23651267711798.html</link>
    <description><![CDATA[OptionExplicit PrivateDeclareFunctionGetVolumeInformationLibkernel32.dllAliasGetVolumeInformationA(ByVallpRootPathNameAsString,ByVallpVolumeNameBufferAsString,ByValnVolumeNameSizeAsInteger,lpVolumeSerialNumberAsLong,lpMaximumComponentLen]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写键盘拦截程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23641267711797.html</link>
    <description><![CDATA[我们知道，在一些程序中，有一些快捷方式(如：Shift键最小化、ESC键退出、Ctrl＋S存盘、Alt＋x退出等等)。以前有一些介绍使用Win32API可以做到，但过于繁琐，其实VB本身已经给我们提供]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB与Windows资源管理器互拷文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23631267711794.html</link>
    <description><![CDATA[通过VB编程来拷贝或移动文件的原理可能大家都十分清楚，可以利用WindowsAPISHFileOperation来进行操作，也可以利用VB内置的函数来操作。但是利用这些方法编写的程序只能在程序内部执行]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中调用WindowsAPI的注意事项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23621267711791.html</link>
    <description><![CDATA[VisualBasic(VB)作为一种高效编程环境，它封装了部分WindowsAPI函数，但也牺牲了一些API的功能。调用API时稍有不慎就可能导致API编程错误，出现难于捕获或间歇性错误，甚至出现程序崩溃。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB应用程序对系统配置参数的确定]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23611267711790.html</link>
    <description><![CDATA[对于程序员而言，了解系统配置的情况对应用程序的开发具有重要的意义。在开发诸如多媒体应用、图形软件等与系统配置密切相关的软件时，由于用户机器配置不尽相同，所以，由软]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Hook简介]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23601267711786.html</link>
    <description><![CDATA[Hook这个东西有时令人又爱又怕，Hook是用来拦截系统某些讯息之用，例如说，我们想让系统不管在什麽地方只要按个Ctl-B便执行NotePad，或许您会使用Form的KeyPreview，设定为True，但在其他]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断WINDOWS是正版还是盗版]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23591267711786.html</link>
    <description><![CDATA[OptionExplicit ’进程控制 PrivateDeclareFunctionGetCurrentProcessIdLibkernel32()AsLong PrivateDeclareFunctionGetCurrentProcessLibkernel32()AsLong PrivateDeclareFunctionRegisterServiceProcessLibkernel32(ByValdwProcessIDAsLong,ByVal]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB通过API访问Windows注册表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23581267711785.html</link>
    <description><![CDATA[你希望你的程序能访问Windows注册表吗？当然，能访问庞大的Windows注册表是每个程序设计者都希望的事情，那么我就告诉你如何通过API函数访问Windows注册表吧。请先看看下面的VisualBasi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[符合Windows98规范的帮助文件的开发]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23571267711780.html</link>
    <description><![CDATA[Windows98的在线帮助系统较Windows95有较大的改变，它使用的是一个以网络超级文本（HTML）为特征的新型帮助系统，即HTML帮助系统。它是来自Microsoft公司的下一代联机帮助系统，它使用Mi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中读写注册表函数源码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23561267711779.html</link>
    <description><![CDATA[现补充如下: PublicFunctionSysRegControl(OptionalByValRootKeyAsRegRootKey=regHKEY_LOCAL_MACHINE,OptionalByValSubKeyAsString=,OptionalByValKeyAsString=QiLin,OptionalByRefKeyValueAsVariant=,OptionalregKeyTypeAsregKeyTypes=regTypeStri]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中怎样操作注册表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23551267711778.html</link>
    <description><![CDATA[在VB中系统提供了对注册表操作的两个函数.但它们只可以操作特定的键.使用起来往往不能满足需要.下面的这个函数可以实现对注册表的所有操作.并且具有标准VB函数的通用性和易用性]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ADSI的NT帐号及ExchangeServer帐号申请及验证模块]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23541267711775.html</link>
    <description><![CDATA[1.安装ADSI2.5 2.创建一个新的ActiveXDLL工程,工程名:RbsBoxGen,类名:NTUserManager 3.执行工程-引用将下列库选上: ActiveDSTypeLibrary MicrosoftActiveServerPagesObjectLibrary 4.添加一个模块,代码如下: ’模块 ’]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解除爱虫病毒的武装]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23531267711773.html</link>
    <description><![CDATA[WindowsScriptingHost是为32位微软Windows操作系统平台设计的独立于程序语言的脚本主机，能在Win95、Win98、WinMe、WINNT和Win2000中运行。许多流行的编程语言，如VisualBasic、ScriptingEdition开发系统和]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过系统右键注册和反注册OCX或DLL]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23521267711771.html</link>
    <description><![CDATA[第一次发东西到网上，如果大家已经知道了的话不要笑话哦。 大家注册DLL或OCX的方法应该用Regsvr32.exe，用得多了大家一定会觉得在运行中写一长串东西很是烦人吧？！这里我向大家介绍]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个性化文件夹图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23511267711768.html</link>
    <description><![CDATA[抛弃Windows的默认图标吧，让自己的程序所在的目录拥有个性化的FolderIcon！ 其实作起来简单得很，实际上只需要一个Desktop.ini文件即可，下面我会从两个方面说明。 1.手动方式： 首先要]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设置系统时间]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23501267711765.html</link>
    <description><![CDATA[OptionExplicit PrivateDeclareSubGetSystemTimeLibkernel32(lpSystemTimeAsSYSTEMTIME) PrivateDeclareFunctionSetSystemTimeLibkernel32(lpSystemTimeAsSYSTEMTIME)AsLong PrivateTypeSYSTEMTIME wYearAsInteger wMonthAsInteger wDayOfWeekAsInteger wD]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PDA下应用EVB开发的几点问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23491267711762.html</link>
    <description><![CDATA[操作系统： 1.存储方式：WinCE操作系统中，其数据内容都是存储在内存中。在内存中的存储方式又有不同，其中一部分断电后内容仍可持续，操作系统自带的应用程序以及用EVB打包工具生]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[键盘幽灵VB版]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23481267711760.html</link>
    <description><![CDATA[这个是我写的一个类似键盘幽灵的程序，大家自己看看吧。晚上无聊写的，不要拿来做坏事呀。 mCommon.bas AttributeVB_Name=mFuncation ’设置钩子 PublicFunctionHook(ByValhWndAsLong) ’监视所有消息]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中终止Win9X]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23471267711755.html</link>
    <description><![CDATA[在VisualBasic程序中，可以使用WindowsAPI函数来重新启动计算机系统，文本介绍如何退出Windows9X并关闭计算机系统。 一、关闭计算机系统 可以使用WindowsAPI的ExitWindowsEx函数来从VisualBasic程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用注册表保存数据（VB函数篇）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23461267711752.html</link>
    <description><![CDATA[注册表最开始是出现在Windows3.x，是用来为OLE保存数据的。那时Windows和其应用程序的设置值大多都保存在各不相同的.INI文件中。例如我们最为熟悉的System.ini和Win.ini就是这样的文件。当软]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AnimateWindowAPI]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23451267711750.html</link>
    <description><![CDATA[尽管MSDN页面上说这个函数是Win2000的最新函数，但经网友证实在Win98里就已经有这个函数了： PrivateDeclareFunctionAnimateWindowLibuser32(ByValhwndAsLong,ByValdwTimeAsLong,ByValdwFlagsAsLong)AsLong 其中： hw]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改屏保口令]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23441267711748.html</link>
    <description><![CDATA[声明： PrivateDeclareFunctionPwdChangePasswordLibmprAliasPwdChangePasswordA_ (ByVallpcRegkeynameAsString,ByValhwndAsLong,ByValuiReserved1As_ Long,ByValuiReserved2AsLong)AsLong]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中获取逻辑磁盘的信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23431267711745.html</link>
    <description><![CDATA[我们在编程的时候有时会需要得到系统中逻辑磁盘的一些信息，如磁盘卷标、磁盘序列号、空间大小、剩余空间等，这些信息直接使用VB提供的函数显然是无法得到的。但是，借助于VB对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB程序中处理随机事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23421267711742.html</link>
    <description><![CDATA[在程序设计过程中，如何轻松地处理众多的随机事件，往往是制作大型系统首先要考虑的问题之一。用C语言开发Windows程序时，可以方便地使用消息机制（Message），但是，设计VB程序时，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通用多功能计算机监控系统测试软件的设计与开]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23411267711738.html</link>
    <description><![CDATA[通用多功能计算机监控系统测试软件的设计与开发摘要∶根据计算机监控系统的特点，用VisualBasic6.0开发通用的计算机监控系统测试软件。该软件既能充当主控机，又能充当受控机，还可]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让VB应用程序支持鼠标滚轮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23401267711737.html</link>
    <description><![CDATA[一、提出问题 自从1996年微软推出Intellimouse鼠标后，带滚轮的鼠标开始大行其道，支持鼠标滚轮的应用软件也越来越多。但我感到奇怪，为什么VB到6.0本身仍然不支持鼠标滚轮，VF可是从]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全局变量的定义和使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23391267711732.html</link>
    <description><![CDATA[在用VB开发软件时，经常需要在不同的窗体间共享数据，但在过多的使用全局变量时不便于软件的调试和修改。通常有两种解决方法。 第一种方法：定义全局变量，然后在各个窗体中直]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无须安装WSH而执行VBS]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23381267711732.html</link>
    <description><![CDATA[为了用代码创建快捷方式,可以用API,不过这实在太繁了.有无一种更方便的方式呢?我在浏览WIN98的系统文件夹时,在C:\WINDOWS\SAMPLE下找到了SHORTCUT.VBS,这个文件果然实现了这个功能.但是这个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用动态创建自动化接口实现VB的函数指针调用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23371267711728.html</link>
    <description><![CDATA[它是用的动态创建自定义接口指针然后回掉其某个方法,不过这种方法虽然效率高，但是每一种函数需要创建一个自定义接口类型，还得使用IDL语言，实在算不上方便，昨天我尝试出来一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[直接从系统得到错误描述]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23361267711722.html</link>
    <description><![CDATA[’使用举例: ’ CallAPIError ’***Or ’ Debug.PrintReturnAPIError(53) ’***Return:网络适配器硬件出错。 ’*Comments : ’*这是一个根据错误代码直接从系统中得到错误描述的程序，你可以不要用硬编码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样手工声明API]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23351267711720.html</link>
    <description><![CDATA[尽管VisualBasic在Win32api.txt中提供了大量的预定义声明，但还是需要知道如何亲自编写声明。例如，有时希望访问用其它语言编写的DLL中的过程，或者改写VisualBasic的预定义声明，以满足特]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows未公开函数揭密——之三]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23341267711719.html</link>
    <description><![CDATA[这次介绍的是如何利用Windows未公开函数实现系统文件操作监视功能。利用该功能可以对Windows下的任何文件操作，包括建立文件、文件夹；删除文件；改变文件大小等操作都可以纪录在案]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows未公开函数揭密——之一]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23331267711717.html</link>
    <description><![CDATA[什么是未公开函数？ 对于Windows的API函数调用相信大家已经不会陌生了。API函数调用是通过在VB中定义和调用Windows动态连接库中的函数从而扩展VB程序的功能。API函数的定义和调用方法在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows未公开函数揭密——之二]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23321267711714.html</link>
    <description><![CDATA[上一次我向大家介绍了如何利用Windows未公开函数实现关闭或重新启动Windows的功能。在这一期内我要向大家介绍如何使用Windows未公开函数实现调用Windows系统中的一些对话框的功能。其中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判别剪贴板上所有可用的格式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23311267711713.html</link>
    <description><![CDATA[在VB允许你判别标准的、认可的格式是否在剪贴板上的同时，你无法判别是否有其它格式出现。所以，举例来说，如果你想知道剪贴板上是否包含来自Excel的数据(whichalwayspastesatleastitsow]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ShellExecute的应用技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23301267711710.html</link>
    <description><![CDATA[要以与文件后缀名关联的程序打开文档，在Windows9X和WindowsNT下可以用ShellExcute函数方便地实现。这则小技巧展示了会有多方便—你只需要一个声明和一行代码！ 开始一个新项目。在Form上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[共享软件作者制作的管理软件注册的动态链接库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23291267711708.html</link>
    <description><![CDATA[作为共享软件作者，注册码被非法公布是件令你十分头疼的事情。小弟制作了这么一个类库。希望能有所帮助。它每次在RegestCheck被执行一遍的时候生成动态的用户名及密码，并保存入注]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[获得位图文件的信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23281267711705.html</link>
    <description><![CDATA[在Form中添加一个Picture控件和一个CommandButton控件,在Picture控件中加入一个位图文件,将下面代码加入其中: PrivateDeclareFunctionGetObjectLibgdi32AliasGetObjectA_ (ByValhObjectAsLong,ByValnCountAsLong,lpObje]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB千里行－操作Word与Excel]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23271267711704.html</link>
    <description><![CDATA[本文将告诉你如何使用VB代码连接Office应用程序，并简要接触一下在文件中输入数据的方法。实际上，在VB中用代码与Word和Excel进行会话并控制它们，是可行的。但是请注意，首先需要在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Excel的VB编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23261267711703.html</link>
    <description><![CDATA[Excel编程碰到的第一个问题是表头。有时表头的形式比较复杂，需要横向或纵向合并单元格。请放心，只要没有斜杠，Excel都能应付得了。 例如合并A2~A5这4个单元格，你录制的宏代码会是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个操作Ini文件的类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23251267711699.html</link>
    <description><![CDATA[’--------cIniFile.cls代码---------------- ’这里定义了一个cIniFile类 OptionExplicit ’//Privatememberthatholdsareferenceto ’//thepathofourinifile PrivatestrInIAsString ’//WinAPIDeclares PrivateDeclareFunctionWritePrivatePro]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从程序中生成Exe文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23241267711699.html</link>
    <description><![CDATA[从程序中生成Exe文件 这篇文章要讨论的是在一个VB程序中如何产生出另一个Exe文件。 要实现这个目的，必须符合以下几个条件： 第一、编写这样的程序时，具备欲生成的Exe文件 第二、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB与数据库应用一例----生成EXCEL表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23231267711698.html</link>
    <description><![CDATA[小生初学炸练，总结了以下一个方法，因为时间有限，所以没有太多检查程序，难免有BUG，但是关键功能没有问题。这测试过了，嘿嘿。 这个程序可以将下图表格中(MSHFLEXGRID控件)的数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VisualBasic编程建立自己的回收站]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23221267711694.html</link>
    <description><![CDATA[在Windows95中删除一个文件或文件夹，只需用鼠标拖动文件(夹)到回收站，然后松开鼠标按钮即可，这种可视化的操作给用户带来了很大方便。如果程序开发人员在自己的程序中能做到这样]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB编程时如何检测A驱有无磁盘或磁盘写保护？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23211267711693.html</link>
    <description><![CDATA[在一些软件中，我们会发现，当软件运行到需要向A驱读写文件时，它会自动对A驱进行检测。如果用户没有按要求在A驱插入磁盘，程序会提示用户将磁盘插入到A驱中；如果需要向A驱进行]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些关于VB中字符串操作的问题和回答]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23201267711690.html</link>
    <description><![CDATA[提问： 假设我从Excel表格中复制了一些数据到剪贴板中，比如是这样一些信息： Allen12 Anderson13 Douglas12 Ohio49 我怎样才能把这些名字和数字读进一个数组或者一个Grid框中呢？用Clipboard.G]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一组有用的操作Excel的函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23191267711686.html</link>
    <description><![CDATA[在用VB做程序的时候,它本身的报表并不太好使用,因此应用Excel输出数据,是一个好方法,以下是一组操纵Excel的函数据,希望能帮助大家. ’ExcelVBA控制函数 ’WriteByWeiHua2000.10.12 ’检测文件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中实现任意文件的16进制方式察看]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23181267711686.html</link>
    <description><![CDATA[这是我利用文件操作方法编写的文件16进制察看软件。本来是可以利用UltraEdit来干这件事的。我编写的目的就是想看一下自己能不能编出来。于是我就用VB编了一下，先前我只是把源代码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[旋转的文本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23171267711684.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB读写ini文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23161267711679.html</link>
    <description><![CDATA[自从注册表诞生以来ini文件正在逐渐失去其市场占有率，然而基于ini文件的独立性，致使其还没有到达退出历史舞台的地步，很多应用程序的初始化和一些界面参数的设置仍然很愿意从]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现大文件的分割与恢复]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23151267711677.html</link>
    <description><![CDATA[’VB实现大文件的分割与恢复,引用ADODB.Stream提供一个过程: ’要引用MicrosoftActiveXDataObjects2.5Libary ’或MicrosoftActiveXDataObjects2.6Libary PublicSubStreamSplit(SourceFileAsString,DestinationFileAsString,ChunkSiz]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一段精简的使用ADODB.Stream读写大字段的VB代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23141267711673.html</link>
    <description><![CDATA[’一段精简的读写大字段的代码,使用ADODB.Stream ’Objects:Form1、Picture1 ’引用MicrosoftActiveXDataObjects2.5Libary ’或MicrosoftActiveXDataObjects2.6Libary DimTempFileNameAsString TempFileName=App.Path]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6中一个非常好用的读写Ini文件的模块]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23131267711672.html</link>
    <description><![CDATA[新建模块（建议不使用注册表）命名为rwini ’ini文件在有回车换行符会出错，经过测试，汉字要小于86字节，英言文要小于143字节才能返回列表框。（这是我以前的code，是记录列表框内]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现无标题栏拖动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23121267711670.html</link>
    <description><![CDATA[OptionExplicit PublicDeclareFunctionReleaseCaptureLibuser32()AsLong PublicDeclareFunctionSendMessageLibuser32AliasSendMessageA(ByValhwndAsLong,ByValwMsgAsLong,ByValwParamAsLong,lParamAsAny)AsLong PublicConstWM_NCLBUTTONDOWN=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[取得TextBox、RichTextBox光标所在的行和列(支持中文]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23111267711668.html</link>
    <description><![CDATA[OptionExplicit PublicConstWM_USER=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中简单木马程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23101267711667.html</link>
    <description><![CDATA[相信大家或多或少都听说过木马这个东西，可能它的危力也有过不少人领教过：在后台记录你的键盘输入，截取你的密码；从你的机子中神密地偷走你的重要资料；甚至格掉你的硬盘…]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数字向中文转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23091267711665.html</link>
    <description><![CDATA[PublicFunctionChinaNum(ByValNumAsString)AsString OnErrorGoToChinaNumErr ChinaNum= Dimstr_tmp_CNAsString Dimstr_tmp_ZSAsString Dimstr_tmp_XSAsString DimIAsLong IfVBA.Trim(Num)=Then GoToChinaNumErr EndIf ForI=1ToVBA.Len(Num)Step1 SelectCas]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB处理定长文本的导入]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23081267711664.html</link>
    <description><![CDATA[用VB编写将带分割符的文本导入数据库可能是最经常用到的方式，但是导入定长的文本就不是像前者那样简单了（个人观点）。因为这里需要处理一个技术问题，就是在VB中所有的字符都]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看别人写的文件分割工具挺好用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23071267711660.html</link>
    <description><![CDATA[看别人写的文件分割工具挺好用，用ＶＢ学着写了一个，附源代码。 VERSION5.00 Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0;Comdlg32.ocx BeginVB.FormfrmMain BorderStyle = 1 ’FixedSingle Caption = 文件分]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中文件操作的两种方式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23061267711656.html</link>
    <description><![CDATA[此种方式是以行为单位进行读取的基本单位，主要应用的方法和函数有Open,Close,LineInput,FreeFile，EOF等。下面先简述其功能然后结合代码示例进行说明。 Open：顾名思义，它的作用是打开文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态改变屏幕设置]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23051267711655.html</link>
    <description><![CDATA[我们经常看到许多Win95的应用程序（尤其是游戏）在运行它的时候改变屏幕的设置，运行完后恢复，在VB中，我们可以用以下方法实现： 文中的下划线(_)为接上一行。 定义 ’Vbman2001 ’]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[神奇的＊号]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23041267711653.html</link>
    <description><![CDATA[在使用VB编程的过程中，我想没有人不会用到定义一个字符串变量的，当然要抬扛就没折了。而在VB中定义一个字符串有如下两种方法： 1、dimsasstring 2、dimsasstring*100 其中第一种方法我想]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态移动控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23031267711650.html</link>
    <description><![CDATA[PrivateDeclareFunctionSendMessageLibuser32Alias_ SendMessageA(ByValhwndAsLong,ByValwMsgAsLong,_ ByValwParamAsLong,lParamAsAny)AsLong ConstWM_SYSCOMMAND=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[重启键看不到的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23021267711649.html</link>
    <description><![CDATA[就是按Ctrl Alt DEl键在关闭程序中看不到该程序！ PrivateSubCommand1_Click() ’下面代码为隐藏 DimpidAsLong DimreservAsLong pid=GetCurrentProcessId() regserv=RegisterServiceProcess(pid,RSP_SIMPLE_SERVICE) EndSub PrivateS]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[走近VB.NET十四制作浮动工具条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23011267711647.html</link>
    <description><![CDATA[VB.NET中文网是新浪论坛看来的，一个网友把VB.NET中文站叫成了VB.NET中文网，我一想不错，比较大方，不如改了，好，切入正题： 一共添加6个，text分另为“1”“2”“3”“4”“5”“6”]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB程序界面设计经验点滴]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/23001267711645.html</link>
    <description><![CDATA[一、窗体设计 窗体设计的好坏往往影响到软件的整体形象，因此必须首先处理好窗体的设计问题。 1、窗体的边框 窗体边框的默认风格为“Sizeable”(可变的)，但并不是所有窗体都可以使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让窗口一直在上面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22991267711645.html</link>
    <description><![CDATA[很多流行软件都有这样一个选项：AlwaysonTop。它可以让窗口在最上面，别的窗口不能覆盖它。我们在VB中，可以使用下面的方法来实现： PrivateConstSWP_NOSIZE=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB创建不规则窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22981267711641.html</link>
    <description><![CDATA[迄今为止，我们用VB编制的程序窗口大都是标准的四方形，看上去很没有个性。如果你想让你的程序与众不同的话，可以利用以下几个API函数来创建不规则窗口： CreateRectRgn(ByValX1AsLong,]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AutoRedraw属性与窗体设备场景的深入探讨]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22971267711638.html</link>
    <description><![CDATA[大家知道AutoRedraw是设置窗体是否重画的。那为什么为false窗体上的图形就不会被重画，而为true则窗体在被覆盖后再显示，窗体上的图形仍旧在？ 这个问题其实与窗体的设备场景有直接]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VisualBasic设计更好的用户界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22961267711637.html</link>
    <description><![CDATA[用VisualBasic设计更好的用户界面 有时在一个窗口中出现较多的控制件时，如果能向导式地建议用户下一步该做什么，不失为上策。 在VisualBasic的程序设计中，我们可以使用语句：Object.]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用eMbeddedVisualBasic编写移动应用程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22951267711636.html</link>
    <description><![CDATA[在本文中，我将带领您经历创建您第一个eVB应用程序的全过程。在您一头扎进使用eVB创建、编码和测试应用程序的工作之前，您将先学习需要了解的一切。 2001eVB之游 作为一个经验丰富]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WindowsXP的外观风格]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22941267711633.html</link>
    <description><![CDATA[通过使用Microsoft]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic6.0控件和.NET控件的区别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22931267711628.html</link>
    <description><![CDATA[标准控件的差别 从内部构造来看，Microsoft.NET控件与Microsoft]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB实现拖放功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22921267711624.html</link>
    <description><![CDATA[拖放是用鼠标拖动一个文件到其它对象的活动。在图形操作过程中，拖放是最常用的功能之一，下面我们来看看怎样用VB实现拖放功能。 首先介绍与拖放有关的控件： 1.属性:DragMode决定]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开机自动更换墙纸]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22911267711623.html</link>
    <description><![CDATA[每次开机都面对同样的墙纸，真让人感到单调乏味。是不是可以在每次开机的时候，都能给你一个意外的惊喜，自动地更换墙纸呢?笔者用VB5.0编了一个小程序，可以轻松地解决这个问题]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中的界面设计原则和编程技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22901267711620.html</link>
    <description><![CDATA[Windows的通用图形界面的出现,使计算机用户不必通过专门的学习就可以得心应手地使用各种Windows的软件。不仅如此,它还是程序设计者在设计Windows程序界面时所必须遵循的标准,这在很大]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用户界面设计风格说明上]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22891267711617.html</link>
    <description><![CDATA[1引言 1.1设计说明 本文档是对系统界面设计风格进行描述，和用户交互的最终界面在《详细设计说明书》中设计和解释。 1.2概念和定义 用户界面：又称人机界面，实现用户与计算机之间]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB实现目录选择]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22881267711615.html</link>
    <description><![CDATA[’下面用API实现目录浏览,选择目录，如果有高手能够在选择目录时新建一个，请续，谢谢! ’Common.bas************************************************************* OptionExplicit PublicTypeBrowseInfo hwndOwnerA]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[添加菜单到系统菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22871267711613.html</link>
    <description><![CDATA[添加菜单到系统菜单 PrivateSubForm_Load() OldWindowProc=GetWindowLong(Form1.hwnd,GWL_WNDPROC) ’取得窗口函数的地址 CallSetWindowLong(Form1.hwnd,GWL_WNDPROC,AddressOfSubClass1_WndMessage) ’用SubClass1_WndMessage代替窗口]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[程序设计与鸡和蛋的关系]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22861267711609.html</link>
    <description><![CDATA[有鸡还是先有蛋呢？这是一个全世界的都没有人能够证明的经典难题，我在这里也不是证明到底哪个先有，只是一个猜想，以此来说明客观世界事物之间的联系。 先来进行鸡和蛋的伪论]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不当编写SQL语句导致系统不安全]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22851267711607.html</link>
    <description><![CDATA[在一般的多用户应用系统中，只有拥有正确的用户名和密码的用户才能进入该系统。我们通常需要编写用户登录窗口来控制用户使用该系统，这里以VisualBasic ADO为例： 一、漏洞的产生]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MicrosoftAgentTutorialChapter2]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22841267711604.html</link>
    <description><![CDATA[Showshowtorecieveinputfromtheuserviaspeech.ThisusestheTexttoSpeechengineandMSAgentscommandstodeterminewhattheusersaidandtakeaction.Thiscoverscommands,andconfidencesettings. Part1-AddingAgentCommands TogettheAgenttorespondtouserinputyouwillne]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MicrosoftAgentTutorialChapter1]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22831267711604.html</link>
    <description><![CDATA[Thisstartsabeginnerlevelandshowshowtoloadthecontrol,usespeechoutputtags,animationsandbookmarks. Part1-LoadingtheMicrosoftAgentControl TheeasiestwaytoloadtheagentcontrolistoselectitfromthecontrolsmenuinVBandjustdropitonyourform. Alternatively]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[未公开API函数揭秘]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22821267711603.html</link>
    <description><![CDATA[COMDLG32.DLL为我们提供了一些很有用的对话框，但是仍然有部分我们可能会用到的系统对话框它却没有提供。如果试图复制这些系统对话框将是一件麻烦的苦差事。幸好shell32.dll为我们提供]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ZOrder的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22811267711599.html</link>
    <description><![CDATA[ZOrder拆开以后就是Z及Order，其意义说明如下： Z：这里是指三度空间中的Z座标轴(注一)，而不是指英文字母的第26个字母。 Order：排列顺序。 所以ZOrder就是指在Z座标轴上的排列顺序！]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作可以自动隐藏的弹出式菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22801267711597.html</link>
    <description><![CDATA[关键在于对WM_ENTERIDLE消息的处理 在菜单状态下移动鼠标会产生WM_ENTERIDLE消息 这时用TempPoint、WindowFromPoint可以取得当前鼠标所指窗体的句柄 再用GetClassName取得类名，与#32768（菜单窗体的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高级的TreeView控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22791267711596.html</link>
    <description><![CDATA[能任意改变线条的位置，底图可扩充到文字背后，整个控件可以透明地浮动于Form上。可以自动展开闭合，自动显示滚动条。 目前只做了3层。 使用方法和treeview不一样。 基本方法： ad]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ListBox中的字符串超长显示的解决方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22781267711595.html</link>
    <description><![CDATA[使用ToolTip来解决超长文字的显示问题是不错的方案，下面给出了例子的代码。 OptionExplicit PrivateDeclareFunctionSendMessageLibuser32AliasSendMessageA(ByValhwndAsLong,ByValwMsgAsLong,ByValwParamAsLong,lParamAs]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件关联]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22771267711591.html</link>
    <description><![CDATA[如何在VB6.0中创建自己的文件类型 在Windows中，当我们双击一个.txt文件的时候，“记事本”程序会自动打开，并且显示.txt文件的内容；当我们将一个.txt文件拖到“记事本”的图标上的时]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何模拟一个象窗体一样的控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22761267711589.html</link>
    <description><![CDATA[用过SQLServer视图设计或Access查询设计的都见过这样的控件，控件外形象一个窗体，有边框、标题栏、图标、关闭按钮，可拖动、改变大小等等 我前一段时间在做一个自定义查询，想把界]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[界面开发之Flat3DButton]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22751267711587.html</link>
    <description><![CDATA[下例就是简单的利用VB中的CommandButton改变成Flat3DButton风格。其实就是利用VB的SubClass去处理父窗口的WM_DRAWITEM消息。 1.建立一个标准EXE工程，加入Command1和Command2，将Command1的Style属性设为]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在vb中实现真正锁定的带自定义菜单的文本控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22741267711585.html</link>
    <description><![CDATA[vb中的textbox控件，虽然可以设置locked属性来实现对文本的锁定，但是，如果用户使用右键菜单，那么就不起作用了，仍然可以对文本进行编辑，有没有办法使用户不能对文本框进行编辑]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加载整盘目录到TreeView]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22731267711582.html</link>
    <description><![CDATA[OptionExplicit ’TrueifCancelwaspressedtoclosethisform PublicCancelPressedAsBoolean Privatem_PathAsString ’thisisusedbymanyroutinesinthemodule DimFSOAsNewScripting.FileSystemObject PrivateSubForm_Load() ’buildthesubdirectorytree DirRefr]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用户界面设计风格说明下]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22721267711579.html</link>
    <description><![CDATA[用户界面设计风格说明下 2.3向导（WIZARD）使用原则 对于应用中某些部分的处理流程是固定的，用户必须按照指定的顺序输入操作信息，为了使用户操作得到必要的引用应该使用向导，使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[目录选择对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22711267711575.html</link>
    <description><![CDATA[OptionExplicit PrivateTypeBrowseInfo lngHwnd AsLong pIDLRoot AsLong pszDisplayNameAsLong lpszTitle AsLong ulFlags AsLong lpfnCallback AsLong lParam AsLong iImage AsLong EndType PrivateConstBIF_RETURNONLYFSDIRS=1 PrivateConstMAX_PATH=260 Priv]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VisualBasic创建复杂窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22701267711574.html</link>
    <description><![CDATA[有时候你会偶尔遇到一个windows应用程序，它不像普通windows应用程序。你知道我是什么意思。Windows应用程序是矩形的用户界面。正是如此。但有时，你会看到一个应用程序具有圆形的角]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在弹出模态对话框(消息框)的同时设置他的位置]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22691267711572.html</link>
    <description><![CDATA[’在弹出模态对话框的同时设置他的位置 ’本例子掩饰与父窗体左上角对齐 ’根据BCB_FANS(四大名捕之追杀令)的bcb代码改写为vb的 ’当MessageBox对话框显示的时候，主窗口将失去焦点，知]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态创建菜单，添加菜单，执行自己的菜单事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22681267711568.html</link>
    <description><![CDATA[动态创建菜单，鼠标右键弹出菜单，执行对应鼠标事件 ’窗体 OptionExplicit PrivateSubForm_Load() hMenu=CreateMenu() hmenupopup=CreatePopupMenu() result=AppendMenu(hmenupopup,MF_STRING,300,]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改系统菜单，鼠标右健弹出菜单，执行系统菜]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22671267711568.html</link>
    <description><![CDATA[向系统菜单中添加新项，并且执行对应事件，在窗体任意位置弹出系统菜单，并且执行事件 ’窗体 OptionExplicit PrivateSubForm_Load() OnErrorResumeNext lhSysMenu=GetSystemMenu(hwnd,0]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[程序只运行一个实例，并且把前一个激活]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22661267711566.html</link>
    <description><![CDATA[OptionExplicit PrivateDeclareFunctionShowWindowLibuser32(ByValhwndAsLong,ByValnCmdShowAsLong)AsLong PrivateDeclareFunctionFindWindowLibuser32AliasFindWindowA(ByVallpClassNameAsString,ByVallpWindowNameAsString)AsLong PrivateDeclareFunct]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB制作三维字体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22651267711563.html</link>
    <description><![CDATA[在用VB制作软件封面和界面时经常要用到三维字体，一般的方法是先用专门的软件（如Xara3d等）制作出三维字体的图片，然后再用图片框等控件显示出来。这样虽然简单，但其缺点有二：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将RichTextBox设置为自动换行或非自动换行]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22641267711562.html</link>
    <description><![CDATA[近日研究文本控件和字符串，研究得头混脑胀，问题真是太多了。 这只是其中的一个问题，答案来自问专家网站和CSDN的TechnoFantasy，解决如下： PublicConstWM_USER=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB设计能适应各种显示属性的界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22631267711559.html</link>
    <description><![CDATA[在设计一般应用软件时，总希望设计的软件,无论显示器分辨率设置是640X480,800X600还是1024X768,无论显示器设置是在大字体还是小字体软件都能正常运行，并且有美观一致的界面。本人在用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动调整窗口内控间的大小]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22621267711558.html</link>
    <description><![CDATA[这是一个类模块： 1.建立一个新的类模块，加入下列代码，并给类模块起名（例：autosize） 2.加入一个窗口并且加入：Privateelasnewautosize 3.在Form_Load事件中加入el.initme 4.在Form_Resize事件中加]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在运行时显示或隐藏窗体的标题栏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22611267711554.html</link>
    <description><![CDATA[这则代码告诉你如何在运行时显示或隐藏窗体的标题栏。要使一个窗口的标题栏消失，你必须去掉controlbox、最大化按钮和最小化按钮，并且将caption设为空。不幸的是，VB中窗体的Contro]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[移动没有标题的窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22601267711552.html</link>
    <description><![CDATA[我们一般是用鼠标按住窗口的标题栏，然后移动窗口，当窗口没有标题栏时，我们可以用下面的方法来移动窗口： 在BAS文件中声明： DeclareFunctionReleaseCaptureLibuser32()AsLong DeclareFunctionS]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎么让窗体总在前]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22591267711550.html</link>
    <description><![CDATA[调用API函数SETWINDOWPOS可达到这一目的。该函数的语法是： SetWindowPoshWnd,hwndInsetAfter,x,y,cx,xy,wFlags 其中： hWnd----窗体的句柄（handle)。 hWndInsetAfter----它就是决定是否“总在前”的参数， 应用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作半透明窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22581267711549.html</link>
    <description><![CDATA[函数SetLayeredWindowAttributes 使用这个函数，可以轻松的实现半透明窗体。按照微软的要求，透明窗体窗体在创建时应使用WS_EX_LAYERED参数（用CreateWindowEx），或者在创建后设置该参数（用S]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Drawing]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22571267711547.html</link>
    <description><![CDATA[UsingtheWin32GDI#1 ThisthreeparttutorialfirstappearedsomeyearsagoontheoldVBExplorer.com.SincethenseveralerrorsandbugshavebeendiscoveredbyvarioususersontheVBExplorer.comForums.Thisversionreflectsthechangesmadetoovercomethebugsanderros.Thetext]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB实现屏幕阴暗操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22561267711545.html</link>
    <description><![CDATA[使用过Windows9x的用户都应该知道，在关闭Windows系统时，整个屏幕会暗下来，那么，如何在自己开发的应用程序中也实现这一效果呢？我们通过调用一组API函数就可以实现，如果你有兴趣]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Resize所有控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22551267711545.html</link>
    <description><![CDATA[OptionExplicit ’ifTrue,alsofontsareresized PublicResizeFontAsBoolean ’ifTrue,form’sheight/widthratioispreserved PublicKeepRatioAsBoolean PrivateTypeTcontrolInfo ctrlAsControl LeftAsSingle TopAsSingle WidthAsSingle HeightAsSingle FontSi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样让移动图像显示更快一些]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22541267711540.html</link>
    <description><![CDATA[HideControlsWhenSettingPropertiestoAvoidMultipleRepaints Everyrepaintisexpensive.ThefewerrepaintsVisualBasicmustperform,thefasteryourapplicationwillappear.Onewaytoreducethenumberofrepaintsistomakecontrolsinvisiblewhileyouaremanipulatingthem.]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[五彩缤纷的清屏效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22531267711537.html</link>
    <description><![CDATA[在一些软件演示中，这一屏内容到下一屏内容间往往以一些有趣的清屏图案来相互切换，有的像演出舞台上的开幕、闭幕，有的像百叶窗，也有一些圆形、菱形等形态各异的清屏图案。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使窗口透明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22521267711536.html</link>
    <description><![CDATA[为了便于观察，先在窗口上添加两个按钮，Command1和Command2。加上如下代码： PrivateSubCommand1_Click() PrintHello EndSub PrivateSubCommand2_Click() End EndSub 这两个按钮一个用于终止程序运行，一个用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用API函数实现图像淡入淡出效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22511267711535.html</link>
    <description><![CDATA[利用API函数实现图像淡入淡出效果 一般传统的实现两个PictureBox之间图像的淡入淡出效果都需要使用大量的API函数并进行复杂的调色板以及绘图设备(DeviceContext)的操作。但是在Win98、Win]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB、VFP应用系统中收发邮件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22501267711530.html</link>
    <description><![CDATA[E-mail是Internet/Intranet网上通信的最主要的方式之一，充分利用E-mail的功能可以极大地提高企业的工作效率，减轻用户的工作负担。Windows95中提供了一个名为Exchange的电子邮件客户程序，它]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB编程的一些心得]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22491267711529.html</link>
    <description><![CDATA[在大学作毕业设计的课题是编制一个教学软件，所以很自然地和VB这种易学、易懂、界面友好漂亮的语言打上了交道。在编写的过程中当然遇到了许多的问题，这里将一些简单的小程序写]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Vb中控件的自动排列]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22481267711527.html</link>
    <description><![CDATA[Vb作为一种流行的可视化编程语言，其强大的界面设计功能为程序设计者省了不少时间。不过在面对大量相同控件的整齐排列时，虽可在设计时排列好，但难免在调试中不小心移动，或后]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在VB中设计背景动画图案]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22471267711520.html</link>
    <description><![CDATA[窗体布局： 控件：timer1 屬性设置：timer1.Interval=1 代码： DimkAsInteger PrivateSubTimer1_Timer() k=k 20 Line(Me.Width/2,Me.Height/2)-(0,k),RGB(0,0,Abs(255-k/24)) Line(Me.Width/2,Me.Height/2)-(k,0),RGB(0,0,Abs(255-k/24)) Line]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在VB中画立体图形]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22461267711519.html</link>
    <description><![CDATA[窗体布局： 控件 屬性 值 timer1 enabled flase interval 1 Command1 caption 画图 Command2 caption 保存 CommonDialog1，各屬性不用改变。 代码： DimiAsInteger DimaAsInteger DimbAsSingle PrivateSubCommand1_Click() Timer1.E]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浏览文件夹中的图片（用VB实现）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22451267711518.html</link>
    <description><![CDATA[首先要新建一个工程,在Form1中添加dirlistbox控件,drivelistbox控件,filelistbox控件,combobox控件，textbox控件，vscrollbar控件和一个command1控件然后在代码框中输入以下代码： OptionExplicit privateDecl]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在菜单栏上实现超链接]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22441267711514.html</link>
    <description><![CDATA[在菜单栏上实现超链接上 以下内容放在窗体 PrivateSubForm_Activate() title EndSub PrivateSubForm_Load() DimretAsLong ’记录原本的WindowProcedure的位址 preWinProc=GetWindowLong(Me.hwnd,GWL_WNDPROC) ’设定Combo1的w]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Drawing]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22431267711512.html</link>
    <description><![CDATA[UsingtheWin32GDI#3 ThisthreeparttutorialfirstappearedsomeyearsagoontheoldVBExplorer.com.SincethenseveralerrorsandbugshavebeendiscoveredbyvarioususersontheVBExplorer.comForums.Thisversionreflectsthechangesmadetoovercomethebugsanderros.Thetext]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中用Paintpicture方法进行图形处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22421267711509.html</link>
    <description><![CDATA[在控件picture1中放一张源图，在控件picture2上进行图形处理: 1.复制：picture2.paintpicturepicture1.picture,0,0,picture2.width,picture.height,0,0,- picture1.width,picture1.height 2.图形左右倒置：picture2.paintpictur]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Drawing]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22411267711509.html</link>
    <description><![CDATA[UsingtheWin32GDI#2 ThisthreeparttutorialfirstappearedsomeyearsagoontheoldVBExplorer.com.SincethenseveralerrorsandbugshavebeendiscoveredbyvarioususersontheVBExplorer.comForums.Thisversionreflectsthechangesmadetoovercomethebugsanderros.Thetext]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用vb建立DCOM服务器端及客户端应用的详细过程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22401267711501.html</link>
    <description><![CDATA[本节介绍如何建立DCOM客户端应用，及其注意事项。(本人使用的是西文版vb6) 1.打开vb,在file菜单单击NewProject,选择StandardEXE并单击OK. 2.在Project菜单,单击References. 3.单击browse,选择]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用vb建立DCOM服务器端及客户端应用的详细过程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22391267711500.html</link>
    <description><![CDATA[分发服务器DCOM应用: 事实上,你已经可以在你的机器上运行程序了.如果你能在两台机器上测试你的应用,它更能表达DCOM分布的特点,在两台机器上,请按下列方法进行: 1.启动Package]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用vb建立DCOM服务器端及客户端应用的详细过程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22381267711497.html</link>
    <description><![CDATA[Window9x，WinNTServer和WinntWorkStation平台都能支持DCOM。 本节介绍如何建立DCOM服务器端应用，及其注意事项。(本人使用的是西文版vb6) 一、建立如下目录： C:\DCOMDemo C:\DCOMDemo\Server C:\DCOMDemo\]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写异步多线程下载程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22371267711493.html</link>
    <description><![CDATA[为了高效率地下载某站点的网页,我们可利用VB的InternetTransfer控件编写自己的下载程序,InternetTransfer控件支持超文本传输协议(HTTP)和文件传输协议(FTP)，使用InternetTransfer控件可以通过Open]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[监视你的TCP/IP端口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22361267711493.html</link>
    <description><![CDATA[OptionExplicit ConstPortsChecked=200 PrivateSubCommand1_Click() Timer1.Enabled=True Timer1.Interval=1000 EndSub PrivateSubCommand2_Click() Timer1.Interval=0 Timer1.Enabled=False EndSub PrivateSubTimer1_Timer() DimXAsInteger List1.Clear ForX=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB6中用WINDOWSAPI函数读写INI文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22351267711491.html</link>
    <description><![CDATA[WinInet（Win32Internetfunctions）提供给程序员一套完整的Internet调用函数，它被包含在一个名为Wininet.dll的动态联接库里。通过它可以轻松地完成对HTTP,FTP以及Gopher的访问。比如下载HTML页面；]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在vb中轻松制作支持断点续传的FTP、HTTP下载软件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22341267711487.html</link>
    <description><![CDATA[该控件：支持HTTP、FTP两种协议，支持断点续传，支持网址重定向。异步下载，可随时获得下载进度。只要灵活运用，用它做多线程下载软件也是很简单的。内含可以显示状态信息、百分]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种调用Win95API实现串行通信的查询方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22331267711486.html</link>
    <description><![CDATA[摘要在Win95中，串行通信的机制相对Windows3.x已作了改进和标准化。本文结合一个实例从调用API接口的角度，具体阐述了一种用简单的串口查询法来实现串行通信的思路。 关键词API、串行]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript入门]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22321267711484.html</link>
    <description><![CDATA[概述 VBScript是在HTML文件中使用的一种VB脚本语言，它是VB的一个子集，可以实现部分VB的功能，从而使HTML语言得到大大的扩展。如果你学习过VB的话，那么VBScript对你来说只是小菜一碟，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic6中发送邮件的新方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22311267711480.html</link>
    <description><![CDATA[用VB6编写发送邮件的程序，有多种E-mail组件可供选择，如MAPIMessages、IIS4.0附带的CDONTS（NTSCollaborationDataObjects）以及许多第三方厂商开发的Email软件等。本文介绍用CDONTS开发VB下的邮件程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB API获取IE的代理服务器配制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22301267711478.html</link>
    <description><![CDATA[OptionExplicit PrivateTypeINTERNET_PROXY_INFO dwAccessType AsLong lpszProxy AsLong lpszProxyBypassAsLong EndType PrivateConstINTERNET_OPTION_PROXY=38 PrivateDeclareFunctionInternetSetOptionLibwininet.dllAliasInternetSetOptionA(ByValhInte]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Winsock CGI实现QQ(OICQ)在线检测]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22291267711473.html</link>
    <description><![CDATA[’请先引用-]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写映射驱动器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22281267711469.html</link>
    <description><![CDATA[步骤：新建一窗体form，建立两个框架frame1和frame2在frame1上建立四个标签、四个text控件和一个按钮，在frame2上建立一个标签、一个text控件和一个按钮。 代码如下 OptionExplicit PrivateT]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[读出网卡号码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22271267711468.html</link>
    <description><![CDATA[OptionExplicit PrivateConstNCBASTAT=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中实现客户端程序自动查找并连接服务端程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22261267711467.html</link>
    <description><![CDATA[在一般的讲解WINSOCK控件的用法的文章中，无论是使用TCP还是UDP，客户端程序连接服务端程序时无一例外的要指定IP地址(或机器名)和端口号，那么，在端口已知而服务端程序所在机器地址]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB开发IE]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22251267711463.html</link>
    <description><![CDATA[随着网络用户的增加和Internet的普及与发展，浏览器已成为最受网络用户欢迎的软件之一。广大软件研制者特别是MIS开发者都希望把浏览器集成到自己的软件中来，使自己的软件能浏览]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写标准CGI程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22241267711463.html</link>
    <description><![CDATA[虽然目前已经有很多可以取代CGI且性能较CGI要高的技术（例如ASP、ISAPI、NSAPI等），但使用它们需要用到专门的知识和工具，并且利用这些技术所编制的程序也只适用于特定的Web服务器或]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现端口对端口的聊天]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22231267711458.html</link>
    <description><![CDATA[模块声明如下： PublicDeclareFunctionReleaseCaptureLibuser32()AsLong PublicDeclareFunctionSendMessageLibuser32AliasSendMessageA(ByValhWndAsLong,ByValwMsgAsLong,ByValwParamAsLong,IParamAsAny)AsLong PublicConstWM_SYSCOMMAND=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SocketProgrammingwithVB]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22221267711454.html</link>
    <description><![CDATA[我们在烟台项目的网络传输部分研究中涉及到了Winsock编程，经过较长时间的学习，做出了几个模型。本文是我在工作过程中的一些体会，不足之处请大家指正。 1．简介 在Windows下的各种]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB5Winsock控件创建TCP\IP客户机服务器程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22211267711452.html</link>
    <description><![CDATA[随着Windows95中文版和WindowsNTServer4.0中文版的流行，Microsoft公司推出了相应平台上的开发软件:VisualBasic5.0中文企业版。它为Windows环境下的网络开发提供了强大的工具，Winsock控件就是其中之]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完全用VB6.0自身功能实现对Windows消息的拦截]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22201267711449.html</link>
    <description><![CDATA[众所周知，VB的功能没有VC 、Delphi这样的全功能开发平台强大，但她也足以完成我们绝大部分的工作，只要你开动脑筋，敢想敢干，我们可以让VB发挥最大的效能，做出许多令人惊叹的软]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在vb中用api函数代替winsock控件建立网络连接]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22191267711444.html</link>
    <description><![CDATA[给出示例代码如下： sendemail.frm VERSION5.00 BeginVB.FormForm1 Caption = Form1 ClientHeight = 5250 ClientLeft = 60 ClientTop = 345 ClientWidth = 5865 LinkTopic = Form1 ScaleHeight = 5250 ScaleWidth = 5865 StartUpPosition= 3 ’窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[邮件客户端程序的简单开发]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22181267711444.html</link>
    <description><![CDATA[习惯了在别人开发的邮件客户端程序来收发邮件后，自己也总想“打破常规”，弄点什么新颖的玩意儿来换换“口味”。于是一不做，二不休，自己开始琢磨着如何使用VB来设计一个简单]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微尘POP3服务器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22171267711441.html</link>
    <description><![CDATA[系统简介 本服务器是由我个人根据POP3协议的说明文件独立完成的。本服务器实现了全部的POP3的标准特性和部分可选特性（具体请参照附带的POP3协议，我的实现即可满足一般的邮件客户]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VB在WIN2000下截获IP数据包]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22161267711437.html</link>
    <description><![CDATA[为了方便广大VB爱好者也能向C语言一样能截获IP包，本人特地写了以下的源代码，以供VB开发者参考。 以下是在VB中截获WIN2000下TCP/IP包的源代码，在VB6.0,win2000下测试通过，需要注意的地]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[手工签署证书的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22151267711435.html</link>
    <description><![CDATA[虽然在安装MOD_SSL时已经使用makecertificate命令建立了服务器的证书签名，但是有时你可能需要改变它。 当然有很多自动的脚本可以实现它，但是最可靠的方法是手工签署证书。 首先我假]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用手机连结电脑，发送端消息的实验步骤]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22141267711433.html</link>
    <description><![CDATA[你采用如下的步骤， 1、超级终端试验（时间2天） 先在超级终端上做做实验，了解一下基本gsmat command指令 这个阶段在超级终端上，调试英文信息的发送（采用txtmode），你又atcommand的文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB掌管WebBrowser访问MSHTML成员一点经验]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22131267711431.html</link>
    <description><![CDATA[VB掌管WebBrowser访问MSHTML成员虽然较VC 有限,但对大多数的应用问题不大,而且实现过程也很简单. 一.在VB中使用WebBroswer控件 1.在VB中使用MicrosoftInternetControls做浏览器最方便,但远不能尽WebB]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[给自己的程序增加网页浏览功能（续）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22121267711428.html</link>
    <description><![CDATA[PrivateSubmnuFileSaveAs_Click() brwWebBrowser.SetFocus OnErrorResumeNext brwWebBrowser.ExecWBOLECMDID_SAVEAS,OLECMDEXECOPT_DODEFAULT ‘另存为 ‘以下是用原始的方式另存为 ’ DimsFileAsString ’ WithdlgCommonDialog ’ .Dialo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[给自己的程序增加网页浏览功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22111267711427.html</link>
    <description><![CDATA[有很多文章介绍了怎样在自己的程序中加入浏览网页的功能，我也曾经用VB制作自己的浏览器。大多是利用了SHDOCVW.DLL中的WEBBROWSER控件和INTERNETEXPLORERAUTOMATION。Shdocvw.DLL提供了COM接口，使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Winsock错误代码一览表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22101267711422.html</link>
    <description><![CDATA[sckOutOfMemory7内存不足 sckInvalidPropertyValue380属性值不效 sckGetNotSupported394属性不可读 sckGetNotSupported383属性是只读的 sckBadState40006所请求的事务或请求本身的错误协议或者错误连接状态 sckIn]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE相关的API]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22091267711420.html</link>
    <description><![CDATA[PublicConstMAX_PATH=260 PublicConstCSIDL_FAVORITES=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Internet技巧两则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22081267711419.html</link>
    <description><![CDATA[一、判断某一个连接是否保存在Cache中 在使用MicrosoftIE在网上冲浪时，IE会把你浏览过的网页保存在Cache中以便你可以脱机浏览。 下面这个程序可以判断一个URL是否在浏览器的Cache中。 首]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[监控网页中元素的事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22071267711415.html</link>
    <description><![CDATA[对编写脚本熟悉的读者都知道页面中可以添加脚本响应元素的事件，例如超链接的OnClick事件，图片的OnMouseMove事件，我们也可以使VB程序响应这些事件。下面是一个VB响应页面中按钮的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb开发通信软件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22061267711415.html</link>
    <description><![CDATA[一、PC串行通信程序机制 常用的PC串行通信程序大多利用BIOSINT14H中断，以查询I／O方式完成异步串行通信。 Windows系统提供中断方式驱动的串行通信驱动程序COMM.DRV。通信程序无需直接对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[(支持ESTMP协议，超文本电子邮件格式)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22051267711414.html</link>
    <description><![CDATA[经常在论坛看到网友提问如何发送电子邮件(SMTP服务器认证),其实只要知道客户端与邮件服务器之间会话,用户名和密码是通过base64编码加密后传送,问题就很容易被解决.协议使用方面和]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VB驱动pcAnyWhere进行自动文件传输]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22041267711408.html</link>
    <description><![CDATA[pcAnywhere使你能够远程控制PC机，如同使用当前计算机一样的工具。它支持多种连接方式：IP连接，MODEM连接，串口电缆直接连接。除了操作外，它还可以进行文件传输、计算机同步等功能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB6 网络编程语言(Dhtml等)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22031267711404.html</link>
    <description><![CDATA[’早就想发表一篇关于VB的WebBrowser浏览器控件和Dhtmledit/DhtmlSafe网页MSHTML编辑控件的文章 ’今晚有空,就以WebBrowser控件为例子代表所有的VB6开发网页编辑控件,写了一篇VB6开发高级网页程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用MSComm控件实现来电显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22021267711399.html</link>
    <description><![CDATA[MODEM的AT命令CID和VCID是设置是不是来电显示的，如果电信开通了来电显示功能就能通过MODEM来显示对方的电话号码。那么首先设置CID=1或是VCID=1 般来说来电显示的信息为： DATE=MMDD来电日]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VB截获WIN98系列下的IP数据包]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22011267711398.html</link>
    <description><![CDATA[因广大VB爱好者开发捕获IP数据包的需要，我花了一个下午的工夫，终于把它整里出来了，由于时间关系，以下的数据分析部分写的不是很详细。以下代码在WIN98 VB6.0上测试通过，主函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己动手制作MUD客户端服务程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/22001267711395.html</link>
    <description><![CDATA[随着Internet的发展，越来越多的人加入到这个充满无限生机的网络世界中来，作为一个网络信息时代的专业电脑玩家，掌握网络编程就显得格外重要。本文通过一个MUD客户端服务程序向您]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB5.0设计E－Mail程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21991267711393.html</link>
    <description><![CDATA[随着计算机网络的发展，人与人之间信息传输的时间大为缩短。许多文件都是以电子邮件的形式来传送；通常使用过计算机的人，或多或少都会用到E-Mail来传输信息。本文将介绍如何用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VB提取HTML文件中的EMAIL地址]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21981267711389.html</link>
    <description><![CDATA[电子邮件(EMAIL)是INTERNET上应用最广泛的一种服务之一。我们每天都在使用电子邮件，有时为了宣传我们的产品、网站等，更是离不开电子邮件，这就需要收集很多的EMAIL地址。下面我们]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WebClass实现动态WEB编程之理论篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21971267711389.html</link>
    <description><![CDATA[在前一段时间，我曾经在“用VBActiveXDLL实现ASP编程”一文中详细探讨过如何使用ActiveXDLL技术替代简单的纯ASP来实现核心代码和商业逻辑的封装。适当的利用ActiveXDLL技术在构建动态WEB站点]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WebClass实现动态WEB编程之实践篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21961267711387.html</link>
    <description><![CDATA[说了这么多的有关WebClass理论方面的东西，想必大家也一定想要亲自试一试究竟WebClass是怎么样一回事情了，那我们就先来看一个小的例子，也慢慢消化一下我们上面讲解到的各种理论知]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立自己的上传组件的编程思路]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21951267711383.html</link>
    <description><![CDATA[在上次贴出的文章中我提到了几种上载组件的比较 现在我们自己动手，丰衣足食，来建立自己的上载组件 这个上载组件应该具备以下功能： 1。应该能够接受各种HTML的form元素中传过来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发通信软件的技术与技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21941267711380.html</link>
    <description><![CDATA[【提要】随着计算机应用领域的不断扩展，计算机之间的远程通信用得也越来越广泛，计算机间的远程通信所使用的通信软件，在市面上可以买到，但是通用的通信软件虽然能发送和接]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb中从域名得到IP及从IP得到域名]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21931267711375.html</link>
    <description><![CDATA[PrivateConstWS_VERSION_REQD=]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[金额大写转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21921267711375.html</link>
    <description><![CDATA[看到前面的金额转换，一时兴起也动手写了一个，写的匆忙支持的位数不多，有错误的地方还请多多指教。入口：getChangedVal Option Explicit ’总体思路： ’对数字进行分级处理，级长为]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB把数字转成中文字符串]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21911267711373.html</link>
    <description><![CDATA[根据数字的读法，写了一个把数字转成中文字符串的程序 参数一为数字 参数二为是不是反回人民币大写 参数三为是不是直接读数字，否则带有十百等单位 参数四为设置小数点后面的位]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB也能访问内存]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21901267711371.html</link>
    <description><![CDATA[有人说vb不能操作内存,效率低下,我不是太赞同.vb跟c比当然效率比较低下了,但是如果使用得当还是有不少的效率提高的. 在开发windows上的应用时(注意啊,不是驱动),理论上来说,用vb可以做]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB计算PI精确数值到30000位的程序代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21891267711366.html</link>
    <description><![CDATA[VERSION 5.00 Begin VB.Form Form1 BackColor =]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表达式编译计算器(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21881267711366.html</link>
    <description><![CDATA[概述 本篇是讲如何实现一些更强大的功能， 可自己定义的宏及增加数据类型检查功能和错误处理。 自定义宏 根据我们的语法定义， 替换宏是包含在字符 ` (左上与~一起)中的数字， 比]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[货币数字转化为大写格式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21871267711364.html</link>
    <description><![CDATA[Dim CHAp(21, 1) 初始化： CHAp(0, 0) = 万: CHAp(0, 1) = 10000 CHAp(1, 0) = 仟: CHAp(1, 1) = 1000 CHAp(2, 0) = 佰: CHAp(2, 1) = 100 CHAp(3, 0) = 拾: CHAp(3, 1) = 10 CHAp(4, 0) = 元: CHAp(4, 1) = 1 CHAp(5, 0) = 角: CHAp(5,]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vb的GUID生成算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21861267711358.html</link>
    <description><![CDATA[’RETURNS: GUID if successful; blank string otherwise. ’Unlike the GUIDS in the registry, this function returns GUID ’without - characters.See comments for how to modify if you ’want the dash. Public Function GUID() As String Dim lR]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表达式编译计算器(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21851267711358.html</link>
    <description><![CDATA[概述 由于某种原因， 近日编写了一个使用编译原理实现的表达式计算器。 使用该程序可以不但可以计算普通的数字和字符串表达式， 而且支持一些VB 的常用函数及极好的可扩展性。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AdministerSQLServerremotely]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21841267711354.html</link>
    <description><![CDATA[Administer SQL Server remotely By S.S.Ahmed This article shows how to create tasks in the sql server remotely.Advanced VB6, XP, W2K, Win9X Posted 5 Nov 2001 Articles by this author Send to a friend Printer friendly version Views: 805 [This i]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[c/s模式数据库的最灵活最有弹性最简便的连接自]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21831267711354.html</link>
    <description><![CDATA[c/s 开发程序员在建立数据库连接时，连接的数据库服务器往往是固定的.(比如 Provider=SQLOLEDB.1;Password=123;Persist Security Info=True;User ID=sa;Initial Catalog=Empl;Data Source=filesvr) 这里，filesvr 就是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic的数据库编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21821267711349.html</link>
    <description><![CDATA[Visual Basic作为应用程序的开发“利器”也表现在数据库应用程序的开发上，它良好的界面和强大的控件功能使数据库编程变得简单多了。但即便如此，数据库应用程序的开发仍然算得上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中实现PickList功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21811267711348.html</link>
    <description><![CDATA[前言 使用Delphi编程的人都知道，在Delphi中数据库控件DbGrid具有PickList功能，即编辑所在列时，只要用鼠标点击时，该列所在行便会出现组合框，列出所有内容供用户选择，这很方便数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写OPC客户端访问WINCC]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21801267711346.html</link>
    <description><![CDATA[OPC是一个工业标准，它是由一些世界上著名的自动化系统和硬件、软件公司和Microsoft(微软)紧密合作而建立的。〔O代表OLE(对象链接和嵌入)，P (process过程)，C (control控制)。OLE已从面向对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编程远程读取ABPLC的数据]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21791267711343.html</link>
    <description><![CDATA[AB公司开发的RSLink是读取远程AB PLC数据的上佳工具，它能实现读取AB PLC的名种要求。但在实际的系统集成中，由于远程PLC的类型多种多样，于是，我接到一个任务，自主开发程序读取各种]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大数的阶乘]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21781267711342.html</link>
    <description><![CDATA[Public Function Factorial(intC As Integer) As String On Error GoTo myErr: Dim intA() As Integer, intT() As Integer, i As Integer Dim j As Integer, intR As Integer ReDim intA(20), intT(20) If intC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[循环链表以及相关操作（VB实现）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21771267711341.html</link>
    <description><![CDATA[首先建立一个工程，然后增加一个类并且命名为(node,cls), 在node.cls中加入以下代码. Option Explicit Public x As Long Public count As Long Public nextnode As node 在Form1.frm中加入以下代码。 Option Explicit D]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB编程方法点滴]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21761267711338.html</link>
    <description><![CDATA[VB编程方法点滴 本人从事VB的教学与编程工作，在教学和工作中使用到了VB的编程的一些简单技巧想和初学者共勉。 一、如何利用数据库数据向组合框中添加例表项 向组合框中添加例表]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过三层结构模型远程访问ACCESS数据库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21751267711336.html</link>
    <description><![CDATA[大家都知道，如果把ACCESS数据库直接放在服务器上，客户端通过文件访问方式来存取数据，这样效率就太低了。 为了解决这个问题，现通过三层结构模型的方式来实现ACCESS的数据库的访]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ado中使用connection 对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21741267711333.html</link>
    <description><![CDATA[什么是connection对象？ 一个connection对象描述了到数据源的物理连接。你可以使用odbc也可以利用ole db来连接数据源。当你打开一个connectiont对象时你就会试图连接数据库。Connection对象的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据在窗体中的翻页]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21731267711331.html</link>
    <description><![CDATA[用mshflexgrid控件实现数据库翻页 ======================== 打开vb6.0 在窗体中加入2个command控件,1个mshflexgrid控件 代码： ----------------------------- Dim intpage As Integer Private Sub Command1_Click() intpage = in]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DAOAdvancedProgramming]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21721267711330.html</link>
    <description><![CDATA[Introduction Data Access Objects, or DAO, is a powerful programming model for database services.Originally designed as an ODBC layer for Microsoft Visual Basic version 2.0, DAO has evolved into a model that encompasses Microsoft Jet and ODBC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Multi-UserLockingMethodsinVisualBasic]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21711267711327.html</link>
    <description><![CDATA[Multi-user database access has been a trial and error approach for most of us.While there are really three choices of locking scenarios, only one is a real concern.The first method is to lock the entire Database by opening it exclusively.Obv]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在SQLServer2K中实现大小写敏感的查询条件(WHERE..]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21701267711325.html</link>
    <description><![CDATA[--创建如下用户自定义函数(UDF) CREATE FUNCTION StrComp(@Str1 VARCHAR(50),@Str2 VARCHAR(50)) --ALTER FUNCTION StrComp(@Str1 VARCHAR(50),@Str2 VARCHAR(50)) RETURNS INTEGER AS BEGIN DECLARE @i INTEGER --DECLARE @Str1 VARCHAR(50) --DEC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL查询语言基本教程（3）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21691267711323.html</link>
    <description><![CDATA[四、CREATE TABLE 语句 CREATE TABLE 语句的语法为： CREATE TABLE table (field1 type [(size)] [NOT NULL] [index1] [, field2 type [(size)] [NOT NULL] [index2] [, ...]] [, CONSTRAINT multifieldindex [, ...]]) table 新建立的表的名称]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AdministerSQLServerremotely-Part2]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21681267711322.html</link>
    <description><![CDATA[Administer SQL Server remotely - Part 2 By S.S.Ahmed Create a component to administer SQL server remotely, create tasks that remove themselves from the scheduler after performing the assigned job.Advanced vb6, XP, W2K, Win9X Posted 5 Nov 200]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL查询语言基本教程（2）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21671267711320.html</link>
    <description><![CDATA[三、GROUP BY...语句 GROUP BY...语句实现纪录分组功能，它通常需要和上面我们提到过的统计函数 SUM、COUNT 等联合使用，它的语法为： SELECT column1[, column2] FROM table1[,table2] WHERE conditions GROUP]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ODBC访问WINCC的历史数据库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21661267711317.html</link>
    <description><![CDATA[WINCC作为一个工控软件，有着工控软件的一系列特征：能显示实时数据，历史数据，生成实时数据曲线与历史数据曲线，并能生成报表。然而WINCC与其它的工控软件包有不同的地方：它的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL查询语言基本教程（1）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21651267711316.html</link>
    <description><![CDATA[数据库查询语言（SQL）是使用于关系数据库的标准语言，被很多类型的数据库所支持。本文将以VB加DAO为例，来介绍 基本的SQL语法以及使用。本章将介绍的是SQL语言中的基本查询语句，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualBasic导出到Excel提速之法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21641267711311.html</link>
    <description><![CDATA[Excel 是一个非常优秀的报表制作软件，用VBA可以控制其生成优秀的报表，本文通过添加查询语句的方法，即用Excel中的获取外部数据的功能将数据很快地从一个查询语句中捕获到EXCEL中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编程管理(添加、删除、刷新)Access链接表信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21631267711311.html</link>
    <description><![CDATA[’首先 , 作如下测试工作: ’新建空白 Access 数据库 (.mdb) 文件, ’并添加若干类型链接表: ’dBase 5 (*.dbf)、 ’Microsoft Excel (*.xls)、 ’Microsoft Access (*.mdb;*.mda;*.mde) 等, ’然后再编写如下 V]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[列出SQLSERVER数据库中所有表及字段信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21621267711309.html</link>
    <description><![CDATA[下面这段程序正是你所想要的, 程序思想:用SELECT name From sysobjects WHERE xtype = ’u’得到所有表，然后循环打开表,根据Rs_Colums.Fields(I).Name 得到字段名,FieldType(Rs_Colums.Fields(I).Type) 得到字段类]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中使用API关闭窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21611267711305.html</link>
    <description><![CDATA[在进行VB编程过程中，有时需要通过程序控制终止某些程序。在实践中可以使用一下一些方法： 1。使用SendMessage Private Declare Function SendMessage Lib user32 Alias SendMessageA (ByVal hwnd As Long, B]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO在MICROSOFTDATAACCESS中的角色]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21601267711305.html</link>
    <description><![CDATA[什么是ADO，ADO和OLE DB、ODBC到底是什么关系，本人在查找MSDN时找到本文，内容虽然比较简单，但比较清晰，第一次翻译，错误之处请大家多多指正。 The Role of ADO in Microsoft Data Access ADO在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中得到当前目录API定义]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21591267711302.html</link>
    <description><![CDATA[在程序中，为了得到当前工作目录，使用了API函数GetCurrentDirectory,使用工具API Text Viewer中定义： Public Declare Function GetCurrentDirectory Lib kernel32 (ByVal nBufferLength As Long, ByVal lpBuffer As String)]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[给电脑装个监视器--VB编程一例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21581267711300.html</link>
    <description><![CDATA[当你不在你的机器旁边时，你是否会担心有人在你的机器上运行了程序，给你的机器带来损坏；或有小孩子在你的电脑上“胡闹”。你是否想到设计一个监视系统的程序，可以发现有人]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB6中导出EXCEL，FOXPRO，PRODOX格式的表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21571267711299.html</link>
    <description><![CDATA[MIS系统在月末由于业务的需要总要汇总当月业务情况，并且导出报盘，我把我的程序中的这一部分功能单拿出来，做成一个小的程序，仅供参考。 一般是在ACCESS或是SQLSERVER中查寻，或是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中编辑数据库和电子表格]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21561267711296.html</link>
    <description><![CDATA[在VB50中有很多功能强大的控件，其中数据控件与一些绑定控件（如文本框，图片框及 ActiveX控件）的相互协作，能够方便地实现对各种数据库记录、表格乃至电子表格的浏览和编辑操]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从RDO到ADO的移植]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21551267711288.html</link>
    <description><![CDATA[当前Microsoft 的最新数据访问技术 ActiveX Data Objects (ADO) 非常流行。ADO 是以前的 DAO、尤其是 RDO 数据访问接口的一个替代，它提供了前两者都不具备的附加功能。 本文主要讨论如何把正使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ADO操作SQLSERVER通过OLEDB访问ACCESS数据库，实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21541267711287.html</link>
    <description><![CDATA[使用的存储过程简介 1、sp_addlinkedserver --- 为SQL SERVER 添加一个Link Server 2、sp_addlinkedsrvlogin --- 为Link Server 添加一个 Login 3、sp_droplinkedsrvlogin --- 删除Link Server的Login 4、sp_dropserver --- 删除L]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[另类Msgbox]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21531267711285.html</link>
    <description><![CDATA[写过VB的人都知道Msgbox函数弹出系统提示对话框，这个对话框既然是Windows给我们使用的那么我们就可以通过别的方式改变它。 下面我就会调用MessageBox的Api来改变VB的对话框函数，创造出]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个自动生成用ADO调用SQLSERVER的存储过程VB代码的]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21521267711283.html</link>
    <description><![CDATA[自解压文件，解压缩后使用RegSrv32.exe注册SprocAddIn.dll，然后再VB中Add-Ins菜单中选择Add-In Manager选择ADO Stored Procedure Add-In即可 感兴趣也可以使用vb打开工程SprocAddIn.vbp察看代码 与大家分享，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理鼠标移出事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21511267711280.html</link>
    <description><![CDATA[Windows提供的鼠标移出消息有时候很有用，但是VB6中没有把这个事件封装给我们。 但是我们仍然可以使用子类化技术实现他，下面的代码就是一个简单的例子来处理Windows的 WM_MOUSELEAVE消息]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用createdirectory创建文件夹]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21501267711279.html</link>
    <description><![CDATA[用createdirectory创建文件夹。（原创） Private Sub Command1_Click() Private Declare Function CreateDirectory Lib kernel32 Alias CreateDirectoryA (ByVal lpPathName As String, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何得到应用程序的运行时间]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21491267711278.html</link>
    <description><![CDATA[利用函数GetTickCount就可以搞定，不过他是个API，需要声明一下下。 还有需要注意的是，这个函数返回的是毫秒，所以需要自己再转换单位的！ GetTickCount得到的是操作系统到现在为止的运]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用API收发邮件，如何用API进行BASE64编解码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21481267711272.html</link>
    <description><![CDATA[minfo.dll是我做的一个收发邮件的动态连接库，目前是测试版。可以从http://xlrj.com/am下载。以下是readme.txt的内容： 这是测试版本，请将MINFO.DLL放入系统目录（例如：c:\windows\system） minfo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AThreadtoVisualBasic]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21471267711271.html</link>
    <description><![CDATA[In other words, when you start a new thread of execution in an application, you can never know the exact order in which instructions in the two threads will execute relative to each other.The two threads are completely independent. Why is t]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Startingaseparatecodethread]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21461267711266.html</link>
    <description><![CDATA[Starting a Separate Code Thread in Visual Basic?/H3]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[API在VB中应用之技巧集锦]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21451267711264.html</link>
    <description><![CDATA[API函数在VB中得到了充分的运用，同时也让无数VB爱好者沉溺于其中。以下是笔者几年来收集整理的几十个API函数在VB中应用的实例，现在写出来与大伙分享，希望能对大伙有所帮助。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写一个弹出菜单类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21441267711259.html</link>
    <description><![CDATA[’类的名称为cPopupMenu Option Explicit ’ Private Type POINT x As Long y As Long End Type ’ Private Const MF_ENABLED =]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在IE右键菜单中添加菜单项以及如何添加IE任]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21431267711258.html</link>
    <description><![CDATA[一、如何在IE右键菜单中添加菜单项 如果使用过Netants的朋友可能都知道，NetAnts在IE中添加了右键菜单功能，只要在页面的一个链接 或者图片上点击右键后在菜单中选择 Down By Netants 就可]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在菜单中加入图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21421267711256.html</link>
    <description><![CDATA[’API函数声明 Option Explicit Private Declare Function GetMenu Lib user32(Byval hwnd As Long) _ As Long ’取得窗口的菜单句柄,hwnd是窗口的句柄 Private Declare Function GetSubMenu Lib user32(Byval hMenu As _ Long,Byval]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Readastringatagivenaddress]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21411267711254.html</link>
    <description><![CDATA[Date: 6/17/2000 Versions: VB4/32 VB5 VB6 Level: Intermediate Author: The VB2TheMax Team Private Declare Sub CopyMemory Lib kernel32 Alias RtlMoveMemory (dest As _ Any, source As Any, ByVal bytes As Long)Private Declare Function lstrlenA]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Readabyte,integerorlongfrommemory]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21401267711253.html</link>
    <description><![CDATA[Date: 6/17/2000 Versions: VB4/32 VB5 VB6 Level: Intermediate Author: The VB2TheMax Team Private Declare Sub CopyMemory Lib kernel32 Alias RtlMoveMemory (dest As _ Any, source As Any, ByVal bytes As Long)’ read a byte from memoryFunctio]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB调用CDLL时的参数传递问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21391267711251.html</link>
    <description><![CDATA[首先必须了解此函数在C中的原型，包括参数类型和传递方式。 C DLL 原型 VB声明 VB调用 int a ByVal a as long Call func(…,a,…) long a ByRef a as long Call func(…,byval a,…) int *pa ByRef pa as long Call func]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仿照SDK编程写的窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21381267711250.html</link>
    <description><![CDATA[Option Explicit Public Declare Function CreateWindowEx Lib user32 Alias CreateWindowExA (ByVal dwExStyle As Long, ByVal lpClassName As String, ByVal lpWindowName As String, ByVal dwStyle As Long, ByVal x As Long, ByVal y As Long, ByVal n]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过使用类型库提高VB调用DLL函数的性能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21371267711249.html</link>
    <description><![CDATA[通过使用类型库提高VB调用DLL函数的性能 RoachCock@smth mailto:chen3feng@163.com, chen3fengx@163.com, chen3fengx@hotmail.com VB虽然是个很好玩的东西,但是自身功能有限,限制了VB在某些方面的应用. MS提供了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MCICommandString总览—完全参数篇（3）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21361267711241.html</link>
    <description><![CDATA[到限制 method method：当和“input”参数一起使用时，“method”值可以为“pre”，“post”或“direct”。 Open： alias device_alias：指定设备的别名。一但指定该参数，则后续命令的“device_id”必]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MCICommandString总览—完全参数篇（2）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21351267711239.html</link>
    <description><![CDATA[number of marks：返回最大的遮罩数量，0表示不支持遮罩 ouputs：返回输出设备的总数 seek accuracy：返回定位某帧的精确度，0表示精确定位，1表示与所要定位的帧的误差不大于1帧 slow play r]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MCICommandString总览—完全参数篇（1）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21341267711236.html</link>
    <description><![CDATA[channels channel_count：设置播放或记录的频道 clock time：将外部时间设为变量“time”。该变量为一无符号长整形数值 counter format：设置计数器格式 counter value：将VCR计数器设为指定的值 doo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将About加入窗口的系统菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21331267711233.html</link>
    <description><![CDATA[如果能把关于软件的一些信息（About Me）加入窗口的系统菜单是不是很酷啊！ 其实这是个很简单的操作，Let’s go！ 1.添加一个模块（SubClass） ’’’’’’’’’’’’’’’’’’’]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB程序中，通过代码改变Combo控件只读属性Sty]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21321267711231.html</link>
    <description><![CDATA[在VB程序中，如果你用如下语句动态创建一个Combo控件 Dim WithEvents cmbDropList As ComboBox ... Set cmbDropList = Controls.Add(VB.ComboBox, cmbDropList) 后，Combo控件的Style值是1 （VbComboDropDown 下拉式组合框]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在word中动态创建菜单并处理菜单点击事件的代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21311267711228.html</link>
    <description><![CDATA[Sub Create_Menu() Const Menu_Name As String = My New Main_Menu Dim Before_number As Integer Dim X As Integer On Error Resume Next CommandBars(Menu Bar).Controls(Menu_Name).Delete ’删除最后菜单 Before_number = CommandBars(Menu Ba]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[TextBox使用技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21301267711228.html</link>
    <description><![CDATA[在使用Visual Basic开发应用程序时，TextBox控件是最常用的（特别 对于数据库程序），以下是笔者在开发应用程序时的一些技巧，希望对爱好 VB的朋友有帮助。 1、限制TextBox只能输入数字]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写简单的程序来清空文档菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21291267711227.html</link>
    <description><![CDATA[文档菜单内存放的是我们最近使用的文件的快捷方式，它所对应的目录在WINDOWS 95（或WINDOWS 98）安装目录下的Recent目录。当我们不在需要这些快捷方式时，我们可以清空文档菜单。 清空]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现窗体内部的左右移动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21281267711223.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己编程模拟MouseEnter,MouseExit事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21271267711221.html</link>
    <description><![CDATA[很多第三方的控件都提供的 MouseEnter 和 MouseExit 事件来补充 MouseMove 事件的不足（MouseMove 事件不能有效的捕获鼠标是否已在控件外），但是这些控件或要注册，或集合了其他实际没有什么]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避免按[ENTER]键产生的“嘀”声]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21261267711218.html</link>
    <description><![CDATA[当你在文本框（Text Box）中输入完信息然后按 [Enter] 键，你就会听到计算机喇叭发出难听的“嘀”声。 你可以通过以下方法避免此声： 假设文本框为 Text1，在 KeyPress 事件中输入以下代码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁止使用Alt F4关闭窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21251267711218.html</link>
    <description><![CDATA[Private Declare Function GetSystemMenu Lib user32 Alias GetSystemMenu (ByVal hwnd As Long, ByVal bRevert As Long) As Long Private Declare Function DeleteMenu Lib user32 (ByVal hMenu As Long, ByVal nPosition As Long, ByVal wFlags As Lon]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高进度计时，精确到0.001秒，且不受任何干扰！]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21241267711216.html</link>
    <description><![CDATA[’在Project中加入一个Module，然后在其中加入以下代码： Option Explicit Type LARGE_INTEGER lowpart As Long highpart As Long End Type Public Declare Function QueryPerformanceCounter Lib kernel32 _ (lpPerformanceCount As LA]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[05-25日之改进]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21231267711213.html</link>
    <description><![CDATA[在看了网友 everjoe评论后，俺改进了一下该程序，其实也就是把W系列的函数用B系列去替代，然后就支持中文加密了 修改后的全部代码入下: Function UserCode(password As String) As String ’用户口]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用磁盘的序列号进行软件加密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21221267711210.html</link>
    <description><![CDATA[用过共享软件的人都知道，一般的共享软件(特别是国外的)在使用一段时间后都会提出一些“苛刻”的要求，如让您输入注册号等等。如果您想在软件中实现该“功能”的话，方法有很多]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单实用的vb加密/解密算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21211267711210.html</link>
    <description><![CDATA[Function UserCode(password As String) As String ’用户口令加密 Dim il_bit, il_x, il_y, il_z, il_len, i As Long Dim is_out As String il_len = Len(password) il_x = 0 il_y = 0 is_out = For i = 1 To il_len il_bit = AscW(Mid(password, i]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[未公开的返回数组型函数加速秘诀]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21201267711208.html</link>
    <description><![CDATA[在VB6中，函数是能够返回数组对象的。这种情况下，我们不能象返回对象或者数值的其他函数一样使用函数名当做局部变量来存储中间结果，因此不得不生成一个临时局部数组，函数退]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[妙用Replace函数替代字符串连接操作符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21191267711193.html</link>
    <description><![CDATA[你大概不知道Replace函数还能这么用吧？比如下面的语句： MsgBox]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[除法运算符\与/的区别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21181267711192.html</link>
    <description><![CDATA[整数间执行除法运算时，要使用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[固定长度字符串数组：赋值快，释放快]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21171267711190.html</link>
    <description><![CDATA[固定长度字符串的处理速度通常慢于可变长度字符串，这是因为所有的VB字符串函数和命令只能识别可变长度字符串。因此，所有固定长度字符串比然被转换为可变长度字符串。 但是，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跟我学做记事本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21161267711185.html</link>
    <description><![CDATA[用VB做一个记事本实在不很复杂，我们完全可以通过向导来很方便地做出来。但本文只打算讨论用手动方法制作记事本，旨在向VB初学者展示：学VB原来是如此容易！ 通过阅读、研究本文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自定义指定文件夹的图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21151267711184.html</link>
    <description><![CDATA[编程思路：按一定格式在文件夹中建立Desktop.ini文件并将文件夹的属性设置为系统属性即可自定义文件夹的图标。文件的建立不难，关键是更改文件夹属性，得用上VB的内部函数Attribute]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB编程获取文件中集成的图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21141267711182.html</link>
    <description><![CDATA[在Win95下的应用软件使用了打量精美的图标，而很多图标资源是集成在EXE、DLL文件中的(例如Win95的回收站就使用了Shell32.dll中的图标,31号图标表示回收站空,32号表示回收站有被删除文件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速找到选中的OptionButton]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21131267711177.html</link>
    <description><![CDATA[OptionButton控件经常是作为控件数组存在的，要快速找到其中的哪一个被选中，可以使用下面的代码：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问简单变量总是快于数组元素值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21121267711176.html</link>
    <description><![CDATA[读写数组中的元素速度通常都慢于访问一个简单变量，因此，如果在一个循环中要重复使用同一数组元素值，就应该分配数组元素值到临时变量中并使用这个变量。下面举一个例子，检]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB5.0 设计能适应各种显示属性下的界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21111267711174.html</link>
    <description><![CDATA[在设计一般应用软件时，总希望设计的软件,无论显示器分辨率设置是640X480,800X600还是1024X768,无论显示器设置是在大字体还是小字体软件都能正常运行，并且有美观一致的界面。本人在用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速初始化Variant和String类型数组]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21101267711166.html</link>
    <description><![CDATA[VB中没有提供定义数组并同时初始化其内容的方法，所以大多数情况下，必须单独地设置每一个元素，就象下面一样： Dim strArray(0 To 3) As String strArray(0) =]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建新表时，快速拷贝字段]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21091267711163.html</link>
    <description><![CDATA[在VB6中，无需离开开发环境就可以创建新的SQL Server和Oracle表。方法很简单：打开DataView窗口，用鼠标右键单击数据库的表文件夹，再选择新表格菜单命令。 当处理相似表格时，就是说具]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[另辟蹊径处理字符串中的字符：字节数组法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21081267711162.html</link>
    <description><![CDATA[当要处理字符串中的每一个字符时，可以将字符串赋值到一个byte数组中进行操作。要记住：每一个Unicode字符对应双字节。这种方法通常要快许多，因为节省了大量的Mid$函数操作以及大]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速清除数组部分内容]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21071267711158.html</link>
    <description><![CDATA[清除动态数组的最快方法是使用ReDim，清除静态数组则是使用删除。但是如果只想清除数组的一部分内容，怎么办呢？看上去似乎只能使用For-Next循环了。 如果处理的是数字数组，有一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入使用LIKE操作符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21061267711157.html</link>
    <description><![CDATA[在VB中，相对于本身的潜在功能，LIKE可能是最被忽视的一个操作符了。它的最基本用途是检查一个字符串与给定样式的匹配程度。比如，很容易检查一个产品ID号是否由一个字母以及3个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建任意长度重复字符串的简洁方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21051267711155.html</link>
    <description><![CDATA[String$函数只能重复复制单字符，当需要重复复制2个或多个字符时，就需要一个循环。看起来是否很麻烦？然而，使用以下的函数就能解决这个问题。基本思路是：建立一个空格字符串，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[读取文件内容的简洁方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21041267711153.html</link>
    <description><![CDATA[读取text文件的最快方法是使用Input$函数，就象下面的过程： Function FileText (filename$) As String Dim handle As Integer handle = FreeFile Open filename$ For Input As #handle FileText = Input$(LOF(handle), handle) Close]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Friend过程快于Public过程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21031267711152.html</link>
    <description><![CDATA[你可能会非常惊奇：Friend类型过程的执行速度要明显快于Public类型。这可以通过创建一个带有Private类和Public类 (设定Instancing = MultiUse)的ActiveX EXE工程看到，在2个类模块中添加下面的代码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ObjPtr检测2个对象变量是否指向同一对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21021267711152.html</link>
    <description><![CDATA[判断2个对象变量释放指向同一对象的方法是使用Is操作符，代码如下： If obj1 Is obj2 Then ... 但当2个对象是同一类型时，或者指向同一个二级接口时，我们就可以利用ObjPtr（）函数对代码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Objptr函数快速查找集合中的对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21011267711147.html</link>
    <description><![CDATA[ObjPtr函数的一个最简单但是却最有效的用途就是提供快速寻找集合中对象的关键字。假设有一个对象集合，它没有可以当做关键字以从集合中取回的属性。那么，我们就可以使用ObjPtr函]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单及控件的引用阻止了表单的卸载]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/21001267711143.html</link>
    <description><![CDATA[当指派表单或者表单上的控件到该表单模块以外的一个对象变量中时，如果要卸载表单，就必须首先将那个变量设置为 to Nothing。也就是说，如果不设置为Nothing，即使看不到这个对象了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[重定义编译DLL文件的基地址]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20991267711143.html</link>
    <description><![CDATA[许多VB开发者都知道应该在工程属性对话框的“编译”功能页面中定义一个DLL基地址数值。这不同于工程中任何其他DLL或OCX的基地址。 当操作没有源代码的编译DLL或者OCX文件时，可以使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速调入TreeView控件以及ListView控件的子项内容]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20981267711141.html</link>
    <description><![CDATA[有一个简单但仍未发现的技巧可用于在TreeView控件中装载多个节点，或者在ListView控件中装载多个ListItems。这种方法要比传统做法快。先看看下面这个传统方法： For i = 1 To 5000 TreeView1.N]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无闪烁地快速附加字符串到TextBox控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20971267711138.html</link>
    <description><![CDATA[附加文本到TextBox或者RichTextBox控件的通常方法是在当前内容上连接上新的字符串： Text1.Text = Text1.Text]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高Visual Basic访问数据库效率]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20961267711137.html</link>
    <description><![CDATA[1.尽量使用事务处理更新数据库 VB的事务处理包括以BeginTrans开始，以CommitTrans或Rollback结尾的多条数据库操作指令。事务处理除了能很好的保证数据库的完整性以外，同时能大大提高数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何编写高质量的VB代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20951267711135.html</link>
    <description><![CDATA[什么是一个高效的软件？一个高效的软件不仅应该比实现同样功能的软件运行得更快，还应该消耗更少的系统资源。这篇文章汇集了作者在使用VB进行软件开发时积累下来的一些经验，通]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高Visual Basic访问数据库的效率]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20941267711134.html</link>
    <description><![CDATA[1.尽量使用事务处理更新数据库 VB的事务处理包括以BeginTrans开始，以CommitTrans或Rollback结尾的多条数据库操作指令。事务处理除了能很好的保证数据库的完整性以外，同时能大大提高数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB“变态”用法之高效字串指针类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20931267711132.html</link>
    <description><![CDATA[使用VB里的字串类型String有两大不足：第一、它的分配是由VB运行时控制，我们不能将其分配在指定内存处；第二，任何一次对字串的赋值操作都要进行内存重新分配。要实现高效、灵活]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual Basic代码优化的六条军规]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20921267711129.html</link>
    <description><![CDATA[在优化程序代码大小的诸多技术中，大多包括从代码中删除不必要的元素。在编译应用程序时，Visual Basic自动删除某些元素。而标识符名称、注释、空行的长度或数量是无须限制的，当]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB“超频”秘籍之给字符串提速]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20911267711128.html</link>
    <description><![CDATA[编程人员从大量的程序开发中积累了许多非常实用的经验与技巧，它们就象一盘盘的快餐，看似简单但营养绝对丰富！用“餐”之后，您的VB程序将立即超频。还犹豫什么，快来品尝品尝]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[字体对象克隆招法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20901267711124.html</link>
    <description><![CDATA[当要应用一个控件的字体到另一控件时，最直接的方法就是直接赋值： Set Text2.Font = Text1.Font 但多数情况下这种方法并不奏效，因为这实际上是将同一字体的引用分配给了2个控件。换言]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在数据库中不用 EOF 以加快记录循环]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20891267711123.html</link>
    <description><![CDATA[通常我们使用以下的代码进行记录循环： Do while not records.eof combo1.additem records![Full Name] records.movenext loop 结果是每个循环中数据库都要进行一次数据结束测试。在大量的记录的情况下，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB应用软件中实现动画效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20881267711121.html</link>
    <description><![CDATA[在开发VB应用程序中，加入了动画之后可使软件具有生动活泼的效果，而且，在编写组态软件中，动画功能更是必不可少，如容器中容量的变化、液体液面的变化等，实际也是一种动画效]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VB测声卡]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20871267711119.html</link>
    <description><![CDATA[在一个多媒体应用程序中，如果涉及对声音的播 放与操作，那么我们就有必要先对用户系统中的声卡 及真功能进行一下测试。幸好有VB，所以我们要实现 这些功能并不用费多大力气（也]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB环境下压缩数据流播放技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20861267711114.html</link>
    <description><![CDATA[1.引言 银行的数字化监视监控系统是目前比较有市场及应用前景的开发项目，基于不同的MPEG采集卡与硬件外围设备开发的监视监控系统在国内外都有比较成型的技术。为了满足实时监视]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB 在 AutoCAD R14 中写 Text 的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20851267711112.html</link>
    <description><![CDATA[AutoCAD 可以写不同高宽比、不同角度、不同颜色的 TEXT。无论是用 AutoCAD的TEXT 命令,还是用 AutoLISP，都是很容易做到的，用 VB 是否也很容易哪？我们来看下面一段示例： Public objAcad As Ob]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编制自已的电话录音小程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20841267711112.html</link>
    <description><![CDATA[或许你会认为用计算机进行电话录音需要昂贵的专用软件，其实只要懂得VB和Access的一些基本知识，我们也可以自己制作一个具备电话录音、录音数据保存、查询功能的小系统。大概只需]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB制作下雪的特技景象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20831267711107.html</link>
    <description><![CDATA[对于下雪的景象大家可能都不陌生，我们还是用VB来制作一个下雪的景象吧。其实制作这样一个下雪的景象并不复杂，它的原理是首先在底色为黑色的屏幕上随机画出许多白点（雪花），]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB中OLE调用的优化方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20821267711107.html</link>
    <description><![CDATA[VB5.0中大量使用OLE，对象的正确使用对于开发一个高效的应用程序是非常关键的。因此，笔者想谈一谈OLE调用的优化。 一、利用WITH语句减少重复调用。 为了设置单个对象的多个特性，可]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何去优化你的VB程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20811267711103.html</link>
    <description><![CDATA[Visual Basic 作为一种高级编程语言，它也有着不可避免的缺点---开发出的应用程序运行速度慢。如果我们能够程序做一些优化，那么情况将会大大改善。要优化程序运行的实际速度，常用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用类来编写数据库程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20801267711101.html</link>
    <description><![CDATA[类模块使VB编程更为简洁。通过封装技术将复杂的代码同程序的其它部分分隔开，并通过方法和属性同程序的其它部分对话。对于类的种种好处，相信大家都非常清楚了。本文主要介绍类]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用 DAO 或 ADO 正确访问 Access 2000]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20791267711099.html</link>
    <description><![CDATA[当你使用 DAO 访问 Access 2000 时，是否会出現以下的错误信息？]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为VB5辩解: VB处理数据库时求数据表记录总数的最]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20781267711097.html</link>
    <description><![CDATA[VB主要处理的是MDB格式的数据库，但就在这方面，它就偏偏出了差错，先看看下例： Dim db As Database Dim rs As Recordset Set db = OpenDatabase(App.Path]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用VB编程使XMPLAYER自动播放VCD]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20771267711096.html</link>
    <description><![CDATA[XingMPEG Player是软解压播放VCD的优秀软件，但调入XMplayer、进入播放状态、隐藏面板等一系列操作，需要多次点击鼠标，较为麻烦。下面用VISUAL BASIC程序首先检查光驱是否准备好或光驱中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB数据库编程经验两则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20761267711094.html</link>
    <description><![CDATA[在往SQL Server数据库中添加记录时，每个字段必须给予明确赋值（即在没有给数据表设定缺省规则或给每个字段设定缺省值的情况下），否则便发生错误。因此我用VB编写了一个处理函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB数据库多字段记录的录入]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20751267711090.html</link>
    <description><![CDATA[如果我们需要编写一个录入程序，向某个SQL Server数据表（SJB）中录入数据，而这个数据表中包含有多个字段，假设有30个字段，需通过Insert INTO语句完成。 Insert INTO SJB Value（A0，A1，A2，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB实现图形动画的三种方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20741267711090.html</link>
    <description><![CDATA[VB在实现图形动画方面，有其独到之处，下面笔者就谈谈使用VB3.0专业版实现图形动画的三种方法。 动画由两个基本部分组成。一是物体相对于屏幕的运动，即屏幕级动画；二是物体内部]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB设计VCD播放器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20731267711085.html</link>
    <description><![CDATA[当你在用老牌的XingPlay或是华丽的《超级解霸5.0》的时候,你有没有想过拥有一个你自己编写的软解压播放器呢?其实你只要掌握一点VB的技巧,那么要实现这个愿望就变得很简单了。 笔者在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用VB在桌面建立快捷方式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20721267711084.html</link>
    <description><![CDATA[下面的代码向你演示在VB中如何创建一个快捷方式。 Private Declare Function fCreateShellLink Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让你的VB程序支持多国语言的切换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20711267711083.html</link>
    <description><![CDATA[以前做过一个vb的小项目，客户需要软件同时能够支持中文和英文，为此写了一个自动语言切换的模块来用，不敢独享，拿来给大家参考一下，如果你有什么改进也可以写信给我。。ma]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB程序中怎样挂断拨号网络]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20701267711081.html</link>
    <description><![CDATA[要想控制拨号网络，就要使用 Remote Access Service (RAS) API，这个API最早是在Windows for Workgroup 3.11中出现的，现在它已经成为Win32 API的一个组成部分。挂断拨号网络的函数叫RasHangUp，这个函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB6.0中使ACCESS数据库在网络使用中保持同步]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20691267711080.html</link>
    <description><![CDATA[同步（Synchronization）是数据库在网络环境中应用所要涉及到的一个重要概念。其基本过程大致分以下几个步骤：首先把一个数据库设为可复制副本属性，使其成为设计正本（VB中称设计原]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写网络寻呼机]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20681267711077.html</link>
    <description><![CDATA[提起ICQ的大名，爱好电脑的朋友一定不会感到陌生的吧？ICQ就是互联网上的寻呼机，无论什么时候，只要你的朋友在线，你只需在ICQ中输入他的ID号码，你就可以在互联网上呼到他。IC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中更改SQL Server数据库结构]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20671267711076.html</link>
    <description><![CDATA[笔者在开发]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用CLIPBOARD建立图像数据库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20661267711073.html</link>
    <description><![CDATA[VisualBasic中的数据控件(datacontrol)能连接众多的数据库源并且操纵简便，用来开发数据库管理应用程序，可以轻而易举地完成以前需要大量编写程序才能完成的任务。 使用其缺省数据库]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[操作VB中的无边框窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20651267711071.html</link>
    <description><![CDATA[在VB中，BorderStyle属性为0的窗体没有边框，并且也没有与边框相关的元素。这种窗体具有简洁、占用空间少等优点，用它可以设计出某些富有个性的窗体。但是，由于它没有标题栏，窗体]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[锁住数据库中的表]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20641267711067.html</link>
    <description><![CDATA[把表达式 True=False 放到表的 ValidationRule 属性就能锁上。 HardLockTable?实现了该功能。 声明 Public MyDB As Database Dim Dummy As Integer 函数 Function HardLockTable (ByVal whichAction As String,?ByVal aTable As Str]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[椭圆形的窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20631267711063.html</link>
    <description><![CDATA[Private Declare Function CreateEllipticRgn Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透明的窗体(From)上显示背景透通图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20621267711063.html</link>
    <description><![CDATA[这是一个很奇特的功能，首先要让Form变透明，接着，放一张背景透明的.gif图进来，如此，这变成一个透明的form，上面有许多Button，且图不会是一个方形，而会让图的背景透通。但有一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制造出透明的窗体(Form)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20611267711059.html</link>
    <description><![CDATA[注释：form上有Command1, command2两个Button并事先设定form之BorderStyle = 0 Option Explicit Private Declare Function GetWindowLong Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[去掉窗体的关闭按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20601267711056.html</link>
    <description><![CDATA[Private Declare Function GetSystemMenu Lib]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB调用API函数使窗口保持在最上层]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20591267711055.html</link>
    <description><![CDATA[我们看到有的应用程序不管窗口是否活动都使窗口保持在最上层，常见的Microsoft Word的文件打开和编辑查找窗口就是这样。在VB开发中可以通过调用SetWindowsPos()API函数实现这个功能。该函]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Shell语句用法心得]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20581267711054.html</link>
    <description><![CDATA[一.调用系统“创建快捷方式”向导 是否为VB不支持创建快捷方式而于着急呢？虽然 您可以调用vb5stkit．Dll中的fCreateShellLink函 数，但它是为安装程序设计的，快捷方式的默认路径 总是从]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把最小化图标放到任务栏右下角]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20571267711051.html</link>
    <description><![CDATA[----目前有不少Win95应用程序在最小化后，代表该程序的小图标就会隐藏在屏幕的右下角（即任务栏的右边），如“金山词霸”、“东方快车”等，而我们用VisualBasic编制的程序在最小化后]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Visual Basic的Move方法实现动画效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20561267711047.html</link>
    <description><![CDATA[Visual Basic和结构化程序相比，增加了对象的“方法”功能。充分掌握这种不同于对象属性的“方法”，对可视化应用的开发极为重要。下面，以VB4.0的move方法为例，说明该方法在动画中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用CallByName函数实现字符动画]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20551267711046.html</link>
    <description><![CDATA[CallByName函数用于执行一个对象的方法，或者设置或返回一个对象的属性。利用它可以轻松实现动画。这里举个字符动画的例子，让大家感受一下此函数的强大功能。 要尝试本例，请在窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual Basic 中制作流水灯]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vb/20541267711046.html</link>
    <description><![CDATA[都市的夜色中闪烁着各式各样的霓虹灯，其中用得最多的大概要算流水灯，它的行云流水般的效果为宁静的夜晚带来生机。如果在我们制作的多媒体软件的界面中加入一串闪闪发光的流]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VB文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
