<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>幻龙网络 &#187; VB编程</title>
	<atom:link href="http://www.01on.com/a/category/vb/feed" rel="self" type="application/rss+xml" />
	<link>http://www.01on.com</link>
	<description>一个教你如何制作网页的地方</description>
	<lastBuildDate>Mon, 02 May 2011 03:33:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>用VB监控本机上网速度及总流量</title>
		<link>http://www.01on.com/a/346.html</link>
		<comments>http://www.01on.com/a/346.html#comments</comments>
		<pubDate>Wed, 20 Jun 2007 20:37:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB编程]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[　　这个程序可以检测本机上网的即时上传速度、下载速度，网络类型，以及总的上传流量、下载流量。 　　VB代码下载： 　　http://www.01on.com/wp-content/uploads/attachments/month_0706/p2007620203642.ra... ]]></description>
			<content:encoded><![CDATA[<p>　　这个程序可以检测本机上网的即时上传速度、下载速度，网络类型，以及总的上传流量、下载流量。 </p>
<p>　　VB代码下载： </p>
<p>　　<a href="http://www.01on.com/wp-content/uploads/attachments/month_0706/p2007620203642.rar">http://www.01on.com/wp-content/uploads/attachments/month_0706/p2007620203642.rar</a></p>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.01on.com%2Fa%2F346.html&title=%E7%94%A8VB%E7%9B%91%E6%8E%A7%E6%9C%AC%E6%9C%BA%E4%B8%8A%E7%BD%91%E9%80%9F%E5%BA%A6%E5%8F%8A%E6%80%BB%E6%B5%81%E9%87%8F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.01on.com/a/346.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VB中On error resume next的作用范围</title>
		<link>http://www.01on.com/a/338.html</link>
		<comments>http://www.01on.com/a/338.html#comments</comments>
		<pubDate>Sat, 02 Jun 2007 13:53:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB编程]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[　在VB中On error resume next的作用范围是子程序(或者函数)以及该子程序(或者函数)调用的子程序(或者函数). 　　在下例中,假如图片F:UploadFile123.jpg是不存在的,程序不会报错,因为Form_Load加了容错语... ]]></description>
			<content:encoded><![CDATA[<p>　在VB中On error resume next的作用范围是子程序(或者函数)以及该子程序(或者函数)调用的子程序(或者函数).<br />
<br />　　在下例中,假如图片F:UploadFile123.jpg是不存在的,程序不会报错,因为Form_Load加了容错语句,对了由Form_Load里调用的Aaa同样生效.<br />

<div class="code">Private Sub Form_Load()<br />
<br />    On Error Resume Next<br />
<br />    Call Aaa<br />
<br />    Picture1.Picture = LoadPicture(&#34;F:UploadFile123.jpg&#34;)<br />
<br />End Sub<br />
<br />Sub Aaa()<br />
<br />    Picture1.Picture = LoadPicture(&#34;F:UploadFile123.jpg&#34;)<br />
<br />End Sub</div>
<p>　　在下例中,假如图片F:UploadFile123.jpg是不存在的,Aaa不会报错,但Form_Load会报错,因为Aaa里的容错语句只对Aaa有效.<br />

<div class="code">Private Sub Form_Load()<br />
<br />    Call Aaa<br />
<br />    Picture1.Picture = LoadPicture(&#34;F:UploadFile123.jpg&#34;)<br />
<br />End Sub<br />
<br />Sub Aaa()<br />
<br />    Error Resume Next<br />
<br />    Picture1.Picture = LoadPicture(&#34;F:UploadFile123.jpg&#34;)<br />
<br />End Sub</div>
<p></p>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.01on.com%2Fa%2F338.html&title=VB%E4%B8%ADOn+error+resume+next%E7%9A%84%E4%BD%9C%E7%94%A8%E8%8C%83%E5%9B%B4" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.01on.com/a/338.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>在vb中使用正则表达式</title>
		<link>http://www.01on.com/a/337.html</link>
		<comments>http://www.01on.com/a/337.html#comments</comments>
		<pubDate>Sat, 02 Jun 2007 13:17:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB编程]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[本函数用于去除网页HTML代码中的超链接 1. 启动 Microsoft Visual Basic 6.0。 2. 在“文件”菜单上，单击“新建项目”。 3. 在“新建项目”对话框中，单击“Standard Exe”，然后单击“确定”。 默认情... ]]></description>
			<content:encoded><![CDATA[<p>本函数用于去除网页HTML代码中的超链接</p>
<p>  1.   启动   Microsoft   Visual   Basic   6.0。<br />
<br />  2.   在“文件”菜单上，单击“新建项目”。<br />
<br />  3.   在“新建项目”对话框中，单击“Standard   Exe”，然后单击“确定”。<br />
<br />  默认情况下将创建   Form1。<br />
<br />  4.   在“项目”菜单上单击“引用”。<br />
<br />  5.   双击“Microsoft   VBScript   Regular   Expressions   5.5”，然后单击“确定”。</p>
<div class="code">&#39;输入：HTML代码<br />
<br />&#39;输出：去除超链接的HTML代码<br />
<br />Private Function LoseATag(ContentStr)<br />
<br />    Dim ClsTempLoseStr<br />
<br />    ClsTempLoseStr = CStr(ContentStr)<br />
<br />    Dim regex As RegExp<br />
<br />    Set regex = New RegExp<br />
<br />    regex.Pattern = &#34;&lt;(/){0,1}a[^&lt;&gt;]*&gt;&#34;<br />
<br />    regex.IgnoreCase = True<br />
<br />    regex.Global = True<br />
<br />    ClsTempLoseStr = regex.Replace(ClsTempLoseStr, &#34;&#34;)<br />
<br />    LoseATag = ClsTempLoseStr<br />
<br />    Set regex = Nothing<br />
<br />End Function</div>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.01on.com%2Fa%2F337.html&title=%E5%9C%A8vb%E4%B8%AD%E4%BD%BF%E7%94%A8%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.01on.com/a/337.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>自己写的一个51单片机编程器软件(附ISP下载线制作)</title>
		<link>http://www.01on.com/a/264.html</link>
		<comments>http://www.01on.com/a/264.html#comments</comments>
		<pubDate>Sun, 04 Mar 2007 00:56:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB编程]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[用VB编写的一个程序，适合于89SC51，89SC52单片机的程序的ISP方式下载。 ISP下载方式的优点是可以在线编程，直接把程序下载到单片机目标版上，特别适合做实验的朋友，无须频繁地插拔芯片，... ]]></description>
			<content:encoded><![CDATA[<p>用VB编写的一个程序，适合于89SC51，89SC52单片机的程序的ISP方式下载。 </p>
<p>ISP下载方式的优点是可以在线编程，直接把程序下载到单片机目标版上，特别适合做实验的朋友，无须频繁地插拔芯片，省时省力。 </p>
<p>软件下载地址:<a title="http://www.01on.com/51.rar" target="_blank" href="http://www.01on.com/51.rar">http://www.01on.com/51.rar</a></p>
<p>暂不提供该软件的VB源代码下载，请谅解。</p>
<p><a target="_blank" href="/wp-content/uploads/attachments/month_0703/s20073117227.GIF"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/s20073117227.GIF" src="/wp-content/uploads/attachments/month_0703/s20073117227.GIF" /></a> <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/k20073117410.GIF"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/k20073117410.GIF" src="/wp-content/uploads/attachments/month_0703/k20073117410.GIF" /></a> <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/a20073117418.GIF"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/a20073117418.GIF" src="/wp-content/uploads/attachments/month_0703/a20073117418.GIF" /></a> <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/320073117427.GIF"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/320073117427.GIF" src="/wp-content/uploads/attachments/month_0703/320073117427.GIF" /></a> <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/920073117948.GIF"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/920073117948.GIF" src="/wp-content/uploads/attachments/month_0703/920073117948.GIF" /></a> <br />
下载线电路 <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/m200731171016.jpg"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/m200731171016.jpg" src="/wp-content/uploads/attachments/month_0703/m200731171016.jpg" /></a> <br />
下载线实物 <br />
<a target="_blank" href="/wp-content/uploads/attachments/month_0703/7200731171041.jpg"><img class="img_normal" alt="/wp-content/uploads/attachments/month_0703/7200731171041.jpg" src="/wp-content/uploads/attachments/month_0703/7200731171041.jpg" /></a> <br />
下载线与单片机目标板连接</p>
<p><a href="http://www.bshare.cn/share?url=http%3A%2F%2Fwww.01on.com%2Fa%2F264.html&title=%E8%87%AA%E5%B7%B1%E5%86%99%E7%9A%84%E4%B8%80%E4%B8%AA51%E5%8D%95%E7%89%87%E6%9C%BA%E7%BC%96%E7%A8%8B%E5%99%A8%E8%BD%AF%E4%BB%B6%28%E9%99%84ISP%E4%B8%8B%E8%BD%BD%E7%BA%BF%E5%88%B6%E4%BD%9C%29" title="用bShare分享或收藏本文"><img src="http://static.bshare.cn/frame/images/button_custom1-zh.gif" alt="用bShare分享或收藏本文" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.01on.com/a/264.html/feed</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
