﻿<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[志明軟體]]></title> 
<link>http://www.ppcqq.com/index.php</link> 
<description><![CDATA[課餘軟體技術平臺]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[志明軟體]]></copyright>
<item>
<link>http://www.ppcqq.com/read.php?439</link>
<title><![CDATA[C# 路径]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[C#]]></category>
<pubDate>Mon, 30 Aug 2010 08:25:31 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?439</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>相对路径<br/><div class="c" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px">System.<span style="color: #202020;">IO</span>.<span style="color: #202020;">Path</span>.<span style="color: #202020;">GetDirectoryName</span><span style="color: #009900;">&#40;</span>System.<span style="color: #202020;">Reflection</span>.<span style="color: #202020;">Assembly</span>.<span style="color: #202020;">GetExecutingAssembly</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ManifestModule</span>.<span style="color: #202020;">FullyQualifiedName</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div><br/><hr/><br/><br/>.NET Compact Framework 提供了Directory.GetCurrentDirectory Method 取当前运行文件的目录，可是运行的时候会抛出 NotSupportedException 。<br/>替代方案使用 Path.GetDirectoryName Method 和 AssemblyName.CodeBase Property 来代替。<br/><br/>当前运行路径<br/><div class="c" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px">System.<span style="color: #202020;">IO</span>.<span style="color: #202020;">Path</span>.<span style="color: #202020;">GetDirectoryName</span><span style="color: #009900;">&#40;</span>System.<span style="color: #202020;">Reflection</span>.<span style="color: #202020;">Assembly</span>.<span style="color: #202020;">GetExecutingAssembly</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #202020;">GetName</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #202020;">CodeBase</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=c%2523" rel="tag">c#</a> , <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?438</link>
<title><![CDATA[C#在PPC中播放声音]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[C#]]></category>
<pubDate>Mon, 30 Aug 2010 08:11:38 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?438</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div><a href="http://www.ppcqq.com/attachment.php?fid=256" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=256" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>首先，我们建立一个.net cf 2.0下，名称为SoundPlay的WM5 ppc项目，当然语言我选择的是C#。<br/><br/>然后界面设计如下：其中：<br/><br/>lblFileName——Text属性：文件地址<br/><br/>btnOpen——Text属性：浏览文件<br/><br/>btnPlay——Text属性：播放声音<br/><br/>新建一个类：Sound，代码和小镇的差不多，不过我做过一小点修改，所以也贴出来，方便大家查阅：<br/><br/><div class="c" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
using System<span style="color: #339933;">;</span><br />
using System.<span style="color: #202020;">Runtime</span>.<span style="color: #202020;">InteropServices</span><span style="color: #339933;">;</span><br />
using System.<span style="color: #202020;">IO</span><span style="color: #339933;">;</span><br />
using System.<span style="color: #202020;">Collections</span>.<span style="color: #202020;">Generic</span><span style="color: #339933;">;</span><br />
using System.<span style="color: #202020;">Text</span><span style="color: #339933;">;</span><br />
<br />
namespace SoundPlay<br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; public class Sound<br />
&nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; private byte<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> m_soundBytes<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; private <span style="color: #000000; font-weight: bold;">enum</span> Flags<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_SYNC <span style="color: #339933;">=</span> <span style="color: #208080;">0x0000</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* play synchronously (default) */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_ASYNC <span style="color: #339933;">=</span> <span style="color: #208080;">0x0001</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* play asynchronously */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_NODEFAULT <span style="color: #339933;">=</span> <span style="color: #208080;">0x0002</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* silence (!default) if sound not found */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_MEMORY <span style="color: #339933;">=</span> <span style="color: #208080;">0x0004</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* pszSound points to a memory file */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_LOOP <span style="color: #339933;">=</span> <span style="color: #208080;">0x0008</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* loop the sound until next sndPlaySound */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_NOSTOP <span style="color: #339933;">=</span> <span style="color: #208080;">0x0010</span><span style="color: #339933;">,</span> &nbsp;<span style="color: #808080; font-style: italic;">/* don't stop any currently playing sound */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_NOWAIT <span style="color: #339933;">=</span> <span style="color: #208080;">0x00002000</span><span style="color: #339933;">,</span> <span style="color: #808080; font-style: italic;">/* don't wait if the driver is busy */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_ALIAS <span style="color: #339933;">=</span> <span style="color: #208080;">0x00010000</span><span style="color: #339933;">,</span> <span style="color: #808080; font-style: italic;">/* name is a registry alias */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_ALIAS_ID <span style="color: #339933;">=</span> <span style="color: #208080;">0x00110000</span><span style="color: #339933;">,</span> <span style="color: #808080; font-style: italic;">/* alias is a predefined ID */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_FILENAME <span style="color: #339933;">=</span> <span style="color: #208080;">0x00020000</span><span style="color: #339933;">,</span> <span style="color: #808080; font-style: italic;">/* name is file name */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SND_RESOURCE <span style="color: #339933;">=</span> <span style="color: #208080;">0x00040004</span> &nbsp;<span style="color: #808080; font-style: italic;">/* name is resource name or atom */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>DllImport<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;CoreDll.DLL&quot;</span><span style="color: #339933;">,</span> EntryPoint <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;PlaySound&quot;</span><span style="color: #339933;">,</span> SetLastError <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; private <span style="color: #000000; font-weight: bold;">extern</span> <span style="color: #993333;">static</span> <span style="color: #993333;">int</span> MobilePlaySound<span style="color: #009900;">&#40;</span><span style="color: #993333;">string</span> szSound<span style="color: #339933;">,</span> IntPtr hMod<span style="color: #339933;">,</span> <span style="color: #993333;">int</span> flags<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//播放外部声音文件</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#91;</span>DllImport<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;CoreDll.DLL&quot;</span><span style="color: #339933;">,</span> EntryPoint <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;PlaySound&quot;</span><span style="color: #339933;">,</span> SetLastError <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; private <span style="color: #000000; font-weight: bold;">extern</span> <span style="color: #993333;">static</span> <span style="color: #993333;">int</span> MoiblePlaySoundBytes<span style="color: #009900;">&#40;</span>byte<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> szSound<span style="color: #339933;">,</span> IntPtr hMod<span style="color: #339933;">,</span> <span style="color: #993333;">int</span> flags<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//播放嵌入声音资源</span><br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// Construct the Sound object to play sound data from the specified stream.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; public Sound<span style="color: #009900;">&#40;</span>Stream stream<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// read the data from the stream</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; m_soundBytes <span style="color: #339933;">=</span> new byte<span style="color: #009900;">&#91;</span>stream.<span style="color: #202020;">Length</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stream.<span style="color: #202020;">Read</span><span style="color: #009900;">&#40;</span>m_soundBytes<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span>stream.<span style="color: #202020;">Length</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// 从一个声音byte流构造函数Sound</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;param name=&quot;snd&quot;&gt;&lt;/param&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; public Sound<span style="color: #009900;">&#40;</span>byte<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> snd<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; m_soundBytes <span style="color: #339933;">=</span> snd<span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// 构造一个空Sound函数，此函数用于播放外部文件</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; public Sound<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// Play the sound File播放外部文件的Play方法</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; public <span style="color: #993333;">void</span> Play<span style="color: #009900;">&#40;</span><span style="color: #993333;">string</span> filename<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MobilePlaySound<span style="color: #009900;">&#40;</span>filename<span style="color: #339933;">,</span> IntPtr.<span style="color: #202020;">Zero</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>Flags.<span style="color: #202020;">SND_ASYNC</span> <span style="color: #339933;">|</span> Flags.<span style="color: #202020;">SND_FILENAME</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// Play The Stream Sound,此方法应该对应从Byte和Stream构造的Sound</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// 注意，它的Flags设置为SND_MEMORY，因为我们的声音文件已经转换到内存中了</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; public <span style="color: #993333;">void</span> Play<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MoiblePlaySoundBytes<span style="color: #009900;">&#40;</span>m_soundBytes<span style="color: #339933;">,</span> IntPtr.<span style="color: #202020;">Zero</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>Flags.<span style="color: #202020;">SND_ASYNC</span> <span style="color: #339933;">|</span> Flags.<span style="color: #202020;">SND_MEMORY</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span><br />
<br />
&nbsp;</div><br/><br/>然后，主界面上的按钮事件代码如下：<br/><div class="c" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
private <span style="color: #993333;">void</span> btnOpen_Click<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> EventArgs e<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; using <span style="color: #009900;">&#40;</span>OpenFileDialog ofd <span style="color: #339933;">=</span> new OpenFileDialog<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ofd.<span style="color: #202020;">ShowDialog</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> DialogResult.<span style="color: #202020;">OK</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lblFileName.<span style="color: #202020;">Text</span> <span style="color: #339933;">=</span> ofd.<span style="color: #202020;">FileName</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; private <span style="color: #993333;">void</span> btnPlay_Click<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> EventArgs e<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sound sound <span style="color: #339933;">=</span> new Sound<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sound.<span style="color: #202020;">Play</span><span style="color: #009900;">&#40;</span>lblFileName.<span style="color: #202020;">Text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp;</div><br/><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=c%2523" rel="tag">c#</a> , <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?437</link>
<title><![CDATA[No  Shortcuts  Ico（移除快捷键小箭头）Ver0.2]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[夜壠·月漩涡]]></category>
<pubDate>Fri, 20 Aug 2010 06:02:21 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?437</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>名称：移除快捷键小箭头 Ver0.2<br/>来自：<a href="http://www.ppcqq.com" target="_blank">www.ppcqq.com</a><br/>说明：<br/>安全支持Vista、Windows 7以及后续版本，移除快捷键小箭头<br/><br/><br/>特别说明：本软件用了UPX进行了体积压缩，可能引起误杀<br/><br/><br/><br/>版本：<br/>Ver 0.2：修正绝对路径 <br/><br/><br/><a href="http://www.ppcqq.com/attachment.php?fid=254" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=254" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="attachment.php?fid=255">点击这里下载文件</a><br/><br/><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a> , <a href="http://www.ppcqq.com/tag.php?tag=delphi" rel="tag">delphi</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?436</link>
<title><![CDATA[Delphi 获取路径]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Delphi]]></category>
<pubDate>Fri, 20 Aug 2010 01:48:59 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?436</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>隔了很长时间没有碰Delphi，就连最最基本都忘光了！看来“温故而知新”、“学如逆水行舟，不进则退”是有绝对的道理！<br/><br/>就这获取路径的东西，都折腾了很久，是自己忘光了？还是自己大意呢？<br/>不是忘记使用USE SHELLAPI，几时缺少字母，哎。。。。瞎折腾<br/><br/><br/><div class="delphi" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
use shellapi<br />
<br />
<span style="color: #000000; font-weight: bold;">procedure</span> &nbsp; TForm1<span style="color: #000066;">.</span><span style="color: #006600;">Button1Click</span><span style="color: #000066;">&#40;</span>Sender<span style="color: #000066;">:</span> &nbsp; <span style="color: #000066; font-weight: bold;">TObject</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span> &nbsp; <br />
&nbsp; <span style="color: #000000; font-weight: bold;">var</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; adr<span style="color: #000066;">:</span> <span style="color: #000000; font-weight: bold;">array</span><span style="color: #000066;">&#91;</span>0<span style="color: #000066;">..</span><span style="color: #006600;">MAX_PATH</span><span style="color: #000066;">&#93;</span> <span style="color: #000000; font-weight: bold;">of</span> <span style="color: #000066; font-weight: bold;">Char</span><span style="color: #000066;">;</span> &nbsp;<br />
&nbsp; <span style="color: #000000; font-weight: bold;">begin</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; GetSystemDirectory<span style="color: #000066;">&#40;</span>adr<span style="color: #000066;">,</span>MAX_PATH<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span> &nbsp; <span style="color: #808080; font-style: italic;">//获取SYSTEM路径</span><br />
&nbsp;<span style="color: #808080; font-style: italic;">//GetWindowsDirectory(adr,MAX_PATH); &nbsp; //获取WINDOWSM路径</span><br />
&nbsp; &nbsp; &nbsp; ShowMessage<span style="color: #000066;">&#40;</span>adr<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span> &nbsp; <span style="color: #808080; font-style: italic;">//显示C:\Windows\System32</span><br />
&nbsp; <span style="color: #000000; font-weight: bold;">end</span><span style="color: #000066;">;</span> &nbsp;<br />
&nbsp;</div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=delphi" rel="tag">delphi</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?435</link>
<title><![CDATA[Office 2010 安装失败错误收集]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[解疑析惑]]></category>
<pubDate>Thu, 19 Aug 2010 17:29:36 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?435</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>一、不是管理员权限执行安装<br/>二、之前旧版本是否没有删除干净<br/>三、自定义安装缺少组件<br/><br/><a href="http://www.ppcqq.com/attachment.php?fid=253" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=253" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?434</link>
<title><![CDATA[C# 批量打开网址]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[C#]]></category>
<pubDate>Sun, 04 Jul 2010 00:21:49 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?434</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>一个很没营养，很基础逐行读文本的软体源码！<br/><br/><div class="cpp" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
<span style="color: #0000ff;">namespace</span> Open_Url<br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; partial <span style="color: #0000ff;">class</span> Form1<br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// 必需的设计器变量。</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">ComponentModel</span>.<span style="color: #A52A2A;">IContainer</span> components <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #0000FF;">;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// 清理所有正在使用的资源。</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;param name=&quot;disposing&quot;&gt;如果应释放托管资源，为 true；否则为 false。&lt;/param&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">protected</span> override <span style="color: #0000ff;">void</span> Dispose<span style="color: #008000;">&#40;</span><span style="color: #0000ff;">bool</span> disposing<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>disposing <span style="color: #0000FF;">&amp;&amp;</span> <span style="color: #008000;">&#40;</span>components <span style="color: #0000FF;">!</span><span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; components.<span style="color: #A52A2A;">Dispose</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; base.<span style="color: #A52A2A;">Dispose</span><span style="color: #008000;">&#40;</span>disposing<span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; #region Windows 窗体设计器生成的代码<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// 设计器支持所需的方法 - 不要</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// 使用代码编辑器修改此方法的内容。</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> InitializeComponent<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">ComponentModel</span>.<span style="color: #A52A2A;">ComponentResourceManager</span> resources <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">ComponentModel</span>.<span style="color: #A52A2A;">ComponentResourceManager</span><span style="color: #008000;">&#40;</span>typeof<span style="color: #008000;">&#40;</span>Form1<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">TextBox</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">openFileDialog1</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">OpenFileDialog</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">LinkLabel</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">SuspendLayout</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// label1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">135</span>, <span style="color: #ff0000;">9</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;label1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">77</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">0</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;批量打开网址&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// label2</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">15</span>, <span style="color: #ff0000;">49</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;label2&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">65</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">1</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;使用方法：&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// label3</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">15</span>, <span style="color: #ff0000;">80</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;label3&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">155</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">2</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;1.选择记录网址的txt文件。&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// label4</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">15</span>, <span style="color: #ff0000;">109</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;label4&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">269</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">3</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;2.点击开始，程序执行过程中你可以控制其暂停。&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// label5</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">15</span>, <span style="color: #ff0000;">138</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;label5&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">257</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">4</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;注:网址格式为:&lt;a href=&quot;</span>http<span style="color: #0000FF;">:</span><span style="color: #008000;">//www.xx.com&quot; target=&quot;_blank&quot;&gt;http://www.xx.com&lt;/a&gt;,一行一个。&quot;;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// button1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">BackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">Black</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">17</span>, <span style="color: #ff0000;">253</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;button1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">75</span>, <span style="color: #ff0000;">23</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">5</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;开始&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">UseVisualStyleBackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">false</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span>.<span style="color: #A52A2A;">Click</span> <span style="color: #0000FF;">+</span><span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">EventHandler</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1_Click</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// button2</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">BackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">Black</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">137</span>, <span style="color: #ff0000;">253</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;button2&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">75</span>, <span style="color: #ff0000;">23</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">6</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;选择...&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">UseVisualStyleBackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">false</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span>.<span style="color: #A52A2A;">Click</span> <span style="color: #0000FF;">+</span><span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">EventHandler</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2_Click</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// textBox1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">17</span>, <span style="color: #ff0000;">311</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;textBox1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">ReadOnly</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">304</span>, <span style="color: #ff0000;">21</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">7</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// button3</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">BackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">Black</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">246</span>, <span style="color: #ff0000;">253</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;button3&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">75</span>, <span style="color: #ff0000;">23</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">8</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;暂停&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">UseVisualStyleBackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">false</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span>.<span style="color: #A52A2A;">Click</span> <span style="color: #0000FF;">+</span><span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">EventHandler</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3_Click</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// openFileDialog1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">openFileDialog1</span>.<span style="color: #A52A2A;">FileName</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;openFileDialog1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// linkLabel1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">AutoSize</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">LinkColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">White</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">Location</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Point</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">238</span>, <span style="color: #ff0000;">372</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;linkLabel1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">Size</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">83</span>, <span style="color: #ff0000;">12</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">TabIndex</span> <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">9</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">TabStop</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">true</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;www.ppcqq.com&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span>.<span style="color: #A52A2A;">LinkClicked</span> <span style="color: #0000FF;">+</span><span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">LinkLabelLinkClickedEventHandler</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1_LinkClicked</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// Form1</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// </span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">AutoScaleDimensions</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">SizeF</span><span style="color: #008000;">&#40;</span><span style="color:#ff0000;">6F</span>, <span style="color:#ff0000;">12F</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">AutoScaleMode</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">AutoScaleMode</span>.<span style="color: #A52A2A;">Font</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">BackColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">Black</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">ClientSize</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Size</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">331</span>, <span style="color: #ff0000;">393</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">linkLabel1</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button3</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">textBox1</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button2</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">button1</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label5</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label4</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label3</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label2</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Controls</span>.<span style="color: #A52A2A;">Add</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">label1</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">ForeColor</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Color</span>.<span style="color: #A52A2A;">Black</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Icon</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">&#40;</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span>.<span style="color: #A52A2A;">Icon</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#40;</span>resources.<span style="color: #A52A2A;">GetObject</span><span style="color: #008000;">&#40;</span><span style="color: #A31515;">&quot;$this.Icon&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">MaximizeBox</span> <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">false</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Name</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;Form1&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">StartPosition</span> <span style="color: #0000FF;">=</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">FormStartPosition</span>.<span style="color: #A52A2A;">CenterParent</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;Open Url Ver1.0&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Load</span> <span style="color: #0000FF;">+</span><span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">EventHandler</span><span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">Form1_Load</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">ResumeLayout</span><span style="color: #008000;">&#40;</span><span style="color: #0000ff;">false</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">PerformLayout</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; #endregion<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span> label1<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span> label2<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span> label3<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span> label4<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Label</span> label5<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span> button1<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span> button2<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">TextBox</span> textBox1<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">Button</span> button3<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">OpenFileDialog</span> openFileDialog1<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span>.<span style="color: #A52A2A;">LinkLabel</span> linkLabel1<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span><br />
<br />
<br />
<br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Collections</span>.<span style="color: #A52A2A;">Generic</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">ComponentModel</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Data</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Drawing</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Linq</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Text</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">IO</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Threading</span><span style="color: #0000FF;">;</span><br />
<span style="color: #0000ff;">using</span> <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Windows</span>.<span style="color: #A52A2A;">Forms</span><span style="color: #0000FF;">;</span><br />
<br />
<span style="color: #0000ff;">namespace</span> Open_Url<br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0000ff;">public</span> partial <span style="color: #0000ff;">class</span> Form1 <span style="color: #0000FF;">:</span> Form<br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; String FileName <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; String str <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; StreamReader sr <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; FileStream fs1 <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; ThreadStart myThreadStart1 <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Thread thread <span style="color: #0000FF;">=</span> <span style="color: #0000ff;">null</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">int</span> isPause <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">0</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">public</span> Form1<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; InitializeComponent<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> Form1_Load<span style="color: #008000;">&#40;</span>object sender, EventArgs e<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> button1_Click<span style="color: #008000;">&#40;</span>object sender, EventArgs e<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>textBox1.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">==</span> <span style="color: #A31515;">&quot;&quot;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MessageBox.<span style="color: #A52A2A;">Show</span><span style="color: #008000;">&#40;</span><span style="color: #A31515;">&quot;请选择txt文件&quot;</span>, <span style="color: #A31515;">&quot;提示&quot;</span>, MessageBoxButtons.<span style="color: #A52A2A;">OK</span>, MessageBoxIcon.<span style="color: #A52A2A;">Error</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myThreadStart1 <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> ThreadStart<span style="color: #008000;">&#40;</span>openurl<span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; thread <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> Thread<span style="color: #008000;">&#40;</span>myThreadStart1<span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; thread.<span style="color: #A52A2A;">Start</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">void</span> openurl<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fs1 <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> FileStream<span style="color: #008000;">&#40;</span>FileName, FileMode.<span style="color: #A52A2A;">Open</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sr <span style="color: #0000FF;">=</span> <span style="color: #800080;">new</span> StreamReader<span style="color: #008000;">&#40;</span>fs1<span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">while</span> <span style="color: #008000;">&#40;</span><span style="color: #0000FF;">!</span>sr.<span style="color: #A52A2A;">EndOfStream</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Thread.<span style="color: #A52A2A;">Sleep</span><span style="color: #008000;">&#40;</span><span style="color: #ff0000;">1000</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; str <span style="color: #0000FF;">=</span> sr.<span style="color: #A52A2A;">ReadLine</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">// Console.WriteLine(str);</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Diagnostics</span>.<span style="color: #A52A2A;">Process</span>.<span style="color: #A52A2A;">Start</span><span style="color: #008000;">&#40;</span><span style="color: #A31515;">&quot;IEXPLORE.EXE&quot;</span>, str<span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MessageBox.<span style="color: #A52A2A;">Show</span><span style="color: #008000;">&#40;</span><span style="color: #A31515;">&quot;网页已全部打开！&quot;</span>, <span style="color: #A31515;">&quot;提示&quot;</span>, MessageBoxButtons.<span style="color: #A52A2A;">OK</span>, MessageBoxIcon.<span style="color: #A52A2A;">Error</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sr.<span style="color: #A52A2A;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fs1.<span style="color: #A52A2A;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> button2_Click<span style="color: #008000;">&#40;</span>object sender, EventArgs e<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">openFileDialog1</span>.<span style="color: #A52A2A;">Filter</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;.txt|*.*&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span><span style="color: #800080;">this</span>.<span style="color: #A52A2A;">openFileDialog1</span>.<span style="color: #A52A2A;">ShowDialog</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span> <span style="color: #0000FF;">==</span> DialogResult.<span style="color: #A52A2A;">OK</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FileName <span style="color: #0000FF;">=</span> <span style="color: #800080;">this</span>.<span style="color: #A52A2A;">openFileDialog1</span>.<span style="color: #A52A2A;">FileName</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; textBox1.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> FileName<span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> button3_Click<span style="color: #008000;">&#40;</span>object sender, EventArgs e<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>isPause <span style="color: #0000FF;">==</span> <span style="color: #ff0000;">0</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>thread.<span style="color: #A52A2A;">IsAlive</span> <span style="color: #0000FF;">==</span> <span style="color: #0000ff;">true</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; thread.<span style="color: #A52A2A;">Suspend</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; isPause <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">1</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; button3.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;继续&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>thread.<span style="color: #A52A2A;">IsAlive</span> <span style="color: #0000FF;">==</span> <span style="color: #0000ff;">true</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; thread.<span style="color: #A52A2A;">Resume</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; isPause <span style="color: #0000FF;">=</span> <span style="color: #ff0000;">0</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; button3.<span style="color: #A52A2A;">Text</span> <span style="color: #0000FF;">=</span> <span style="color: #A31515;">&quot;暂停&quot;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">void</span> linkLabel1_LinkClicked<span style="color: #008000;">&#40;</span>object sender, LinkLabelLinkClickedEventArgs e<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #800080;">System</span>.<span style="color: #A52A2A;">Diagnostics</span>.<span style="color: #A52A2A;">Process</span>.<span style="color: #A52A2A;">Start</span><span style="color: #008000;">&#40;</span><span style="color: #A31515;">&quot;IEXPLORE.EXE&quot;</span>, <span style="color: #A31515;">&quot;http://www.ppcqq.com&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #0000FF;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span><br />
<br />
&nbsp;</div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=c%2523" rel="tag">c#</a> , <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a> , <a href="http://www.ppcqq.com/tag.php?tag=net" rel="tag">net</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?433</link>
<title><![CDATA[Office 2010 精简正式版]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Sun, 13 Jun 2010 05:45:49 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?433</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>简介：<br/>一款来自微软的Microsoft Office Mobile 2010 简体中文正式版本，使用了 Microsoft Office Mobile 2010之后，无论您的员工是使用 PC、智能手机，还是 Web 浏览器工作，该产品都能为他们提供大量强大的新功能来帮助他们更好地完成工作。Microsoft Office Mobile 2010 对 Excel、PowerPoint、Word、Outlook 以及可让每个人都能更轻松地跟踪、报告和共享重要信息的新服务器集成功能进行了重大更新，通过用户熟悉的、直观的工具提供了所有程序包。<br/><br/>包含： Word Mobile 2010、Excel Mobile 2010<br/>剔除：PowerPoint Mobile 2010、SharePoint Workspace Mobile 2010、OneNote Mobile 2010<br/><br/><br/><br/>这个文件只能在登入之后下载。请先 <a href="http://www.ppcqq.com/login.php?job=register">注册</a> 或 <a href="http://www.ppcqq.com/login.php">登入</a><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?432</link>
<title><![CDATA[SpbPhoneSuite+CallerLoc+CeleCmd]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Sat, 08 May 2010 08:08:32 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?432</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div><strong>使用说明</strong><br/>使用前请确认：<br/>1.安装了CeleCmd（自行刷的ROM一般都整合了，如果你的机器上没有，可将附件中的CeleCmd.exe复制到&#92;Windows目录后运行，选中关联.ccs脚本即可）<br/>2.安装了CallerLoc，并且开启所有来电归属显示<br/>3.安装了SpbPhoneSuite，并且打开了来电过滤功能。<br/>建议：打开SpbPhoneSuite今日插件的来电过滤模式显示。<br/><br/>安装方法：<br/>1.将CallFilter.ccs和CallFilterConfig.ccs复制到CallerLoc的Plugin目录下<br/>2.运行CallFilterConfig.ccs进行设置<br/><br/>使用方法：<br/>在SpbPhoneSuite中任意选择你需要的来电过滤模式（在今日插件上长按当前来电过滤模式可快速切换），在来电过滤模式为“黑名单”模式时，除了你定义的黑名单号码会被过滤外，你在CallFilterConfig.ccs选择的归属地的来电也会被过滤。当不需要按归属地过滤来电时，自由选择其他模式即可。<br/>建议：可在情景模式管理中定义每个情景模式的来电过滤模式，并定义好情景定时切换列表，实现情景模式和来电过滤的整合。<br/><br/>注意事项：<br/>如果需要过滤本省除你住地以外的其他电话，可在CallFilterConfig.ccs设置里“不过滤此地来电”一项中设置成你所在的市名，注意要前面要加上省名，例如：“安徽合肥”<br/><br/><br/><br/><u><strong>CallFilter.ccs</strong></u><br/><div class="css" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
REGX HKLM\Software\Spb Software House\Spb Phone Suite\CallFilter\<span style="color: #cc00cc;">#Enabled</span><br />
IFEX %x<span style="color: #00AA00;">==</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>ENDP<br />
REGX HKLM\Software\Spb Software House\Spb Phone Suite\CallFilter\<span style="color: #cc00cc;">#ignoringtype</span><br />
IFEX %x<span style="color: #00AA00;">==</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">,</span>SEND <span style="color: #cc66cc;">115</span><br />
&nbsp;</div><br/><hr/><br/><u><strong>CallFilterConfig.ccs</strong></u><br/><div class="css" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
EVAL <span style="color: #cc66cc;">8</span><span style="color: #00AA00;">=</span>%C\cl_-a_CallFilter<span style="color: #6666ff;">.txt</span><br />
EVAL <span style="color: #cc66cc;">5</span><span style="color: #00AA00;">=</span>&lt;<span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&gt;</span>启用归属地过滤 <span style="color: #00AA00;">&#40;</span>选中条目将被过滤<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span>&lt;<span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&gt;</span>禁用归属地过滤 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&amp;copy<span style="color: #00AA00;">;</span> funnyPC<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>未知 <span style="color: #00AA00;">*,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>北京<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>天津<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>上海<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>重庆<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>河北<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>山西<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>辽宁<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>吉林<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>黑龙江<br />
DLGX 归属过滤设置<span style="color: #00AA00;">,</span>%5<br />
IFEX %x<span style="color: #00AA00;">==</span>-<span style="color: #cc66cc;">1</span><span style="color: #00AA00;">,</span>ENDP<br />
IFEX %x&amp;0x0002<span style="color: #00AA00;">,</span>BATC FILE %8<span style="color: #00AA00;">;</span>ENDP<br />
EVAL <span style="color: #cc66cc;">1</span><span style="color: #00AA00;">=</span>%x<br />
EVAL <span style="color: #cc66cc;">6</span><span style="color: #00AA00;">=</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>江苏<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>浙江<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>安徽<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>福建<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>山东<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>河南<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>湖北<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>湖南<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>广东<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>海南<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>四川<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>贵州<br />
DLGX 归属过滤设置<span style="color: #00AA00;">,</span>%6<br />
IFEX %x<span style="color: #00AA00;">==</span>-<span style="color: #cc66cc;">1</span><span style="color: #00AA00;">,</span>ENDP<br />
EVAL <span style="color: #cc66cc;">2</span><span style="color: #00AA00;">=</span>%x<br />
EVAL <span style="color: #cc66cc;">7</span><span style="color: #00AA00;">=</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>云南<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>陕西<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>甘肃<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>青海<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>新疆<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>广西<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>内蒙<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>西藏<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>宁夏<span style="color: #00AA00;">,</span><span style="color: #00AA00;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">&#93;</span>香港|澳门|台湾<br />
DLGX 归属过滤设置<span style="color: #00AA00;">,</span>%7<span style="color: #00AA00;">,</span>$不过滤此地来电<span style="color: #00AA00;">:,</span>特服%0<br />
IFEX %x<span style="color: #00AA00;">==</span>-<span style="color: #cc66cc;">1</span><span style="color: #00AA00;">,</span>ENDP<br />
EVAL <span style="color: #cc66cc;">3</span><span style="color: #00AA00;">=</span>%x<br />
FILE %8&lt;-<span style="color: #00AA00;">&#91;</span>Link<span style="color: #00AA00;">&#93;</span>%RCallFilter.ccs%R%R<span style="color: #00AA00;">&#91;</span>Rules<span style="color: #00AA00;">&#93;</span>%R<br />
FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">0</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>未知<br />
IFEX %1&amp;0x0004<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>北京<br />
IFEX %1&amp;0x0008<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>天津<br />
IFEX %1&amp;0x0010<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>上海<br />
IFEX %1&amp;0x0020<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>重庆<br />
IFEX %1&amp;0x0040<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>河北<br />
IFEX %1&amp;0x0080<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>山西<br />
IFEX %1&amp;0x0100<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>辽宁<br />
IFEX %1&amp;0x0200<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>吉林<br />
IFEX %1&amp;0x0400<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>黑龙江<br />
IFEX %1&amp;0x0800<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>江苏<br />
IFEX %2&amp;0x0001<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>浙江<br />
IFEX %2&amp;0x0002<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>安徽<br />
IFEX %2&amp;0x0004<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>福建<br />
IFEX %2&amp;0x0008<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>山东<br />
IFEX %2&amp;0x0010<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>河南<br />
IFEX %2&amp;0x0020<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>湖北<br />
IFEX %2&amp;0x0040<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>湖南<br />
IFEX %2&amp;0x0080<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>广东<br />
IFEX %2&amp;0x0100<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>海南<br />
IFEX %2&amp;0x0200<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>四川<br />
IFEX %2&amp;0x0400<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>贵州<br />
IFEX %2&amp;0x0800<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>云南<br />
IFEX %3&amp;0x0001<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>陕西<br />
IFEX %3&amp;0x0002<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>甘肃<br />
IFEX %3&amp;0x0004<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>青海<br />
IFEX %3&amp;0x0008<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>新疆<br />
IFEX %3&amp;0x0010<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>广西<br />
IFEX %3&amp;0x0020<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>内蒙<br />
IFEX %3&amp;0x0040<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>西藏<br />
IFEX %3&amp;0x0080<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>宁夏<br />
IFEX %3&amp;0x0100<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>香港<br />
IFEX %3&amp;0x0200<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>澳门<br />
IFEX %3&amp;0x0200<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
EVAL <span style="color: #cc66cc;">9</span><span style="color: #00AA00;">=</span>台湾<br />
IFEX %3&amp;0x0200<span style="color: #00AA00;">,</span>FILE %8&lt;<span style="color: #00AA00;">=</span>%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
ELSE FILE %8&lt;<span style="color: #00AA00;">=</span>!%<span style="color: #933;"><span style="color: #cc66cc;">9</span>%</span>R<br />
FILE %8&lt;<span style="color: #00AA00;">=</span>!%R<br />
&nbsp;</div><br/><hr/><br/><u><strong>cl_-a_CallFilter.txt 内容样本</strong></u><br/><div class="css" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
<span style="color: #00AA00;">&#91;</span>Link<span style="color: #00AA00;">&#93;</span><br />
CallFilter.ccs<br />
<br />
<span style="color: #00AA00;">&#91;</span>Rules<span style="color: #00AA00;">&#93;</span><br />
!特服<br />
未知<br />
北京<br />
天津<br />
上海<br />
重庆<br />
河北<br />
山西<br />
辽宁<br />
吉林<br />
黑龙江<br />
江苏<br />
浙江<br />
安徽<br />
福建<br />
山东<br />
河南<br />
湖北<br />
湖南<br />
广东<br />
海南<br />
四川<br />
贵州<br />
云南<br />
陕西<br />
甘肃<br />
青海<br />
新疆<br />
广西<br />
内蒙<br />
西藏<br />
宁夏<br />
香港<br />
澳门<br />
台湾<br />
!<br />
&nbsp;</div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?431</link>
<title><![CDATA[Windows mobile netcfv3.5]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Wed, 21 Apr 2010 13:35:39 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?431</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div><span style="font-size: 14px;"><strong>.NET Compact Framework 3.5</strong></span><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.ppc.armv4.cab" target="_blank">NETCFv35.ppc.armv4.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wce.armv4.cab" target="_blank">NETCFv35.wce.armv4.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wce.mipsii.cab" target="_blank">NETCFv35.wce.mipsii.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wce.mipsiv.cab" target="_blank">NETCFv35.wce.mipsiv.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wce.sh4.cab" target="_blank">NETCFv35.wce.sh4.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wce.x86.cab" target="_blank">NETCFv35.wce.x86.cab</a><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.wm.armv4i.cab" target="_blank">NETCFv35.wm.armv4i.cab</a><br/> <br/> <br/><span style="font-size: 14px;"><strong>.NET Compact Framework 3.5 Diagnostics</strong></span><br/> <br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.DE.cab" target="_blank">NETCFv35.Messages.DE.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.DE.wm.cab" target="_blank">NETCFv35.Messages.DE.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.EN.cab" target="_blank">NETCFv35.Messages.EN.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.EN.wm.cab" target="_blank">NETCFv35.Messages.EN.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.ES.cab" target="_blank">NETCFv35.Messages.ES.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.ES.wm.cab" target="_blank">NETCFv35.Messages.ES.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.FR.cab" target="_blank">NETCFv35.Messages.FR.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.FR.wm.cab" target="_blank">NETCFv35.Messages.FR.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.IT.cab" target="_blank">NETCFv35.Messages.IT.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.IT.wm.cab" target="_blank">NETCFv35.Messages.IT.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.JA.cab" target="_blank">NETCFv35.Messages.JA.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.JA.wm.cab" target="_blank">NETCFv35.Messages.JA.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.KO.cab" target="_blank">NETCFv35.Messages.KO.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.KO.wm.cab" target="_blank">NETCFv35.Messages.KO.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.zh-CHS.cab" target="_blank">NETCFv35.Messages.zh-CHS.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.zh-CHS.wm.cab" target="_blank">NETCFv35.Messages.zh-CHS.wm.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.zh-CHT.cab" target="_blank">NETCFv35.Messages.zh-CHT.cab</a><br/><br/><a href="http://www.gps-vor.de/files/NETCFv35.Messages.zh-CHT.wm.cab" target="_blank">NETCFv35.Messages.zh-CHT.wm.cab</a><br/> <br/><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a> , <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?430</link>
<title><![CDATA[微软中文输入法老三样]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Thu, 15 Apr 2010 11:43:10 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?430</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>一、删除msim.dll<br/>二、删除对应注册表<br/><div class="reg" style="font-family:monospace;FONT-SIZE: 12px; FONT-FAMILY: Consolas, Lucida Console, Courier New; BORDER:1px dotted gray; PADDING: 5px 5px 5px 5px"><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429691-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0000FF;">&quot;Desc&quot;</span><span style="color: #000000;">=</span>&quot;With Block Recognizer you can enter characters using single strokes, a technique &nbsp; you may be familiar with.&quot; &nbsp;&quot;Accents&quot;<span style="color: #000000;">=</span>dword:0 &nbsp;<br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;Block Recognizer&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429691-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\DefaultIcon<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll,0&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429691-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\IsSIPInputMethod<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;1&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429691-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\InprocServer32<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll&quot;</span><br />
<br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429690-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0000FF;">&quot;ShiftLock&quot;</span><span style="color: #000000;">=</span>dword:0 &nbsp;&quot;Desc&quot;<span style="color: #000000;">=</span><span style="">&quot;With Letter Recognizer you can enter characters using natural character strokes and gestures you may be familiar with.&quot; &nbsp;&quot;Accents&quot;=dword:0 &nbsp;@=&quot;Letter Recognizer&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429690-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\DefaultIcon<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll,0&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429690-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\IsSIPInputMethod<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;1&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429690-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\InprocServer32<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll&quot;</span><br />
<br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429667-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span><span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="color: #0000FF;">&quot;ShiftLock&quot;</span><span style="color: #000000;">=</span>dword:0 &nbsp;&quot;KBMode&quot;<span style="color: #000000;">=</span>dword:5 &nbsp;<br />
<span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;Keyboard&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429667-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\DefaultIcon<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll,0&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429667-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\IsSIPInputMethod<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;1&quot;</span><br />
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\CLSID\<span style="color: #FF6600;"><span style="color: #000000;">&#123;</span>42429667-ae04-11d0-a4f8-00aa00a749b9<span style="color: #000000;">&#125;</span></span>\InprocServer32<span style="color: #000000;">&#93;</span><br />
&nbsp; <span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;msim.dll&quot;</span><br />
&nbsp;</div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a> , <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?429</link>
<title><![CDATA[WM 关于面板]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Wed, 07 Apr 2010 04:58:00 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?429</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div><a href="http://www.ppcqq.com/attachment.php?fid=250" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=250" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>今日看到一个ROM的关于版面信息有AD，实在不喜欢，所以自己dump了他，并且修改一下！不过如果是自用的，在关于版面添加自己一张小照片也是不错的想法！O(∩_∩)O哈哈~其实实现步骤是很简单！<br/><br/><br/>一、目标文件shellres.dll.0804.mui 位于SYS&#92;Base_Lang_0804 以模块形式存在 首先使用reversmode工具转换成文件 <br/>二、用Restorator打开shellres.dll.0804.mui&nbsp;&nbsp;转到对话框的14368的位置 在最后面添加一行<br/><br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">1<br/>1即为你刚才添加位图资源的ID <br/>51 103是你添加这个位图的坐标<br/>47 31 这个是你图片的尺寸<br/>修改好之后点编译脚本 保存<br/></div></div><br/>再使用RecMod工具把这个mui转为模块刷机即可<br/><br/>备注：<br/>如果想再别人修改好的基础上替换图片，直接修改shellres.dll.0804.mui bitmap上的图片<br/>如果想删除别人的logo标志，就删除Dialog-14368位置上面的最后一行，以及bitmap上的图片<br/>如果别人没有自己想添加，执行一二步骤<br/><br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">14368 DIALOG 0, 15, 194, 154<br/>STYLE DS_CONTROL &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_CLIPSIBLINGS<br/>CAPTION ""<br/>LANGUAGE LANG_CHINESE, 0x2<br/>FONT 8, "Tahoma"<br/>&#123;<br/>&nbsp;&nbsp; CONTROL "", 563, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 4, 3, 150, 18 <br/>&nbsp;&nbsp; CONTROL "OS", 564, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 4, 22, 150, 18 <br/>&nbsp;&nbsp; CONTROL "@ 2009 Microsoft Corporation。", 565, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 4, 41, 150, 9 <br/>&nbsp;&nbsp; CONTROL "保留所有权利。", 579, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 4, 51, 124, 9 <br/>&nbsp;&nbsp; CONTROL "此计算机程序受美国和国际版权法保护。", 566, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 4, 61, 150, 9 <br/>&nbsp;&nbsp; CONTROL "处理器:", 568, STATIC, SS_RIGHT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 5, 72, 61, 9 <br/>&nbsp;&nbsp; CONTROL "", 569, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 68, 71, 120, 10 <br/>&nbsp;&nbsp; CONTROL "内存:", 570, STATIC, SS_RIGHT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 35, 82, 31, 9 <br/>&nbsp;&nbsp; CONTROL "", 571, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 68, 82, 120, 9 <br/>&nbsp;&nbsp; CONTROL "扩展槽:", 572, STATIC, SS_RIGHT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 5, 92, 61, 10 <br/>&nbsp;&nbsp; CONTROL "未使用", 573, STATIC, SS_LEFT &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 68, 92, 120, 10 <br/>&nbsp;&nbsp; <span style="color: #FF0000;">CONTROL 1, 0, STATIC, SS_BITMAP &#124; WS_CHILD &#124; WS_VISIBLE &#124; WS_GROUP, 51, 103, 47, 31</span> <br/>&#125;</div></div><br/><a href="http://www.ppcqq.com/attachment.php?fid=251" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=251" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?428</link>
<title><![CDATA[WM6.5 使用PNG自定义图标]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Mon, 05 Apr 2010 07:18:08 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?428</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div><span style="color: #FF0000;"><span style="font-size: 14px;"><strong>一、令PNG成为文件夹图标</strong></span></span><br/><a href="http://www.ppcqq.com/attachment.php?fid=245" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=245" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><div class="code">&#91;HKEY_LOCAL_MACHINE&#92;Security&#92;Shell&#92;StartInfo&#92;Start&#92;常用工具&#93;<br/>&quot;Icon&quot;=&quot;&#92;&#92;Windows&#92;&#92;Start_Icon_Applications.png&quot;<br/>&quot;Group&quot;=dword:00000001</div><br/><br/><br/><br/><span style="color: #FF0000;"><span style="font-size: 14px;"><strong>二、更改系统连接下的外部GPS图标</strong></span></span><br/><a href="http://www.ppcqq.com/attachment.php?fid=246" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=246" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><div class="code">&#91;HKEY_LOCAL_MACHINE&#92;Security&#92;Shell&#92;StartInfo&#92;Start&#92;Settings&#92;Connections&#92;cplmain.cpl,25&#93;<br/>&quot;Icon&quot;=&quot;&#92;&#92;Windows&#92;&#92;Start_Icon_GPS.png&quot; </div><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a> , <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?427</link>
<title><![CDATA[WM6.1上下栏透明]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Thu, 01 Apr 2010 10:35:28 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?427</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>1. 使用环境：WM6.1 and WM6.5!<br/>2. 注意只适合定制ROM使用；<br/><br/>修改方法：<br/>用WinHex打开...<br/>任务栏<br/>打开shell32.exe模块下的S001数据，搜索 hex 代码:<br/><strong><span style="color: #FF0000;">FF</span></strong> 00 00 00 FF FF FF FF<br/>在附图里代码位置是 0x9A0，不同ROM的未必都是相同。（LZ补充我用的ROM21895在3472那一行）<br/>修改红色FF代码以达到变更任务栏的透明度。<br/><br/>----------------------------------------------------------------<br/>软键栏<br/>同样找到 aygshell.dll 模块<br/>打开S001 数据，搜索 hex 代码:<br/><strong><span style="color: #FF0000;">FF</span></strong> 00 00 00 FF FF FF FF<br/>在附图里代码位置是 0x750。 <br/>修改红色FF代码以达到变更软键栏的透明度<br/>------------<br/>0xFF 不透明（默认值)<br/>0x80 是半透明<br/>0x00 全透明<br/><br/><br/><span style="color: #FF0000;">特别提示：使用XTask任务管理器更加容易实现透明（无需进行上面的步骤）</span><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?426</link>
<title><![CDATA[解决Win7/Vista下的mtty(USB port can not open)问题]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Wed, 31 Mar 2010 23:31:57 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?426</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>由于Win7和XP的不同，使用MTTY的方法并不能像在XP系统下那么方便快捷，虽然实现的方法多了几步，但步骤也很白菜的！<br/><br/><a href="http://www.ppcqq.com/attachment.php?fid=247" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=247" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>1.安装Windows Mobile 设备中心，并且在连接设置里面选择取消“允许USB连接”选项<br/><br/>2.手机在三色屏下连接电脑<br/>进入三色屏的方法：电源开机+OK按键+捅PP（不同类型手机进入三色屏方法不同，请按照自己机子的进入实际方法）。<br/><br/><a href="http://www.ppcqq.com/attachment.php?fid=248" target="_blank"><img src="http://www.ppcqq.com/attachment.php?fid=248" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>4.从设备管理器中更新固件<br/>计算机（右键属性）——设备管理器：找到手机的设备，便携设备——PocketPc USB Sync”或者显示设备的名称，右击——浏览计算机以查找驱动程序软件，然后指定对应驱动软体（下载本日志附件），这样就可以正常使用MTTY了。<br/><br/><br/><br/><a href="attachment.php?fid=249">点击这里下载文件</a><br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a> , <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a>
]]>
</description>
</item><item>
<link>http://www.ppcqq.com/read.php?425</link>
<title><![CDATA[WM 10MB中文字体]]></title> 
<author>月漩涡 &lt;delete2@gmail.com&gt;</author>
<category><![CDATA[Mobile]]></category>
<pubDate>Wed, 31 Mar 2010 05:40:43 +0000</pubDate> 
<guid>http://www.ppcqq.com/read.php?425</guid> 
<description>
<![CDATA[ 
	<div id="adsense" style="display: none"><span style="float: right"><a href="http://www.000webhost.com/" 
onClick="this.href='http://www.000webhost.com/152831.html'" target="_blank"><img 
src="http://www.000webhost.com/images/banners/468x60/banner6.gif" alt="Free 
Website Hosting" width="468" height="60" border="0" /></a></span></div>提取于<br/>Tags - <a href="http://www.ppcqq.com/tag.php?tag=mobile" rel="tag">mobile</a> , <a href="http://www.ppcqq.com/tag.php?tag=%25E8%25BD%25AF%25E4%25BB%25B6" rel="tag">软件</a>
]]>
</description>
</item>
</channel>
</rss>