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

<channel>
	<title>移动新世界 &#187; 手机开发</title>
	<atom:link href="http://m.tanggaowei.com/category/mobile-dev/feed" rel="self" type="application/rss+xml" />
	<link>http://m.tanggaowei.com</link>
	<description>每个人都有一个世界，新的思想，能拥有新的世界</description>
	<pubDate>Fri, 05 Feb 2010 14:10:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>为什么要给HTML中的图片加上标题</title>
		<link>http://m.tanggaowei.com/2008/06/19/89.html</link>
		<comments>http://m.tanggaowei.com/2008/06/19/89.html#comments</comments>
		<pubDate>Thu, 19 Jun 2008 03:04:44 +0000</pubDate>
		<dc:creator>Neot</dc:creator>
		
		<category><![CDATA[手机开发]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://m.tanggaowei.com/2008/06/19/89.html</guid>
		<description><![CDATA[有些时候，我们要将浏览器的图片显示关闭，以节省网络流量。特别是在用手机上网的时候。
如果图片标签没有添加标题属性，关闭图片显示后，用户就无法知道图片的用途。特别是将图片用做按钮 ( 比如“搜索”按钮 ) 时，甚至无法进行点击操作，丧失了按钮的功能。
一般网站还算影响不大，手机版的网站就是致命的了。许多手机用户为了节省流量，平时都将浏览器的图片显示关掉。这部份用户很可能被迫放弃对网站的访问。
[ 标签： HTML ] [ 固定链接：http://m.tanggaowei.com/2008/06/19/89.html ]]]></description>
		<wfw:commentRss>http://m.tanggaowei.com/2008/06/19/89.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>智能设备应用程序的菜单怎么修改不了</title>
		<link>http://m.tanggaowei.com/2008/05/08/77.html</link>
		<comments>http://m.tanggaowei.com/2008/05/08/77.html#comments</comments>
		<pubDate>Thu, 08 May 2008 08:46:01 +0000</pubDate>
		<dc:creator>传说一梦</dc:creator>
		
		<category><![CDATA[手机开发]]></category>

		<category><![CDATA[资源菜单]]></category>

		<guid isPermaLink="false">http://m.tanggaowei.com/2008/05/08/77.html</guid>
		<description><![CDATA[调试VS2005 C++ MFC 智能设备应用程序时，系统总是显示项目的初始菜单（在手机上运行可能正常）。要使用自己的菜单，请注释掉 res\MyProjectsp.rc2 中以下内容： 
///////////////////////////////////////////////////////////////////////////// // // 数据 // /* IDR_MAINFRAME SHMENUBAR DISCARDABLE BEGIN &#160;&#160;&#160; IDR_MAINFRAME, &#160;&#160;&#160; 1, &#160;&#160;&#160; I_IMAGENONE, IDOK, TBSTATE_ENABLED, TBSTYLE_BUTTON &#124; TBSTYLE_AUTOSIZE, &#160;&#160;&#160; IDS_OK, 0, NOMENU, END */
[ 标签： 资源菜单 ] [ 固定链接：http://m.tanggaowei.com/2008/05/08/77.html ]]]></description>
		<wfw:commentRss>http://m.tanggaowei.com/2008/05/08/77.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>怎样恢复 Edit 控件的 BackSpace 键功能</title>
		<link>http://m.tanggaowei.com/2008/05/08/76.html</link>
		<comments>http://m.tanggaowei.com/2008/05/08/76.html#comments</comments>
		<pubDate>Thu, 08 May 2008 08:44:34 +0000</pubDate>
		<dc:creator>传说一梦</dc:creator>
		
		<category><![CDATA[手机开发]]></category>

		<category><![CDATA[BackSpace]]></category>

		<category><![CDATA[Edit控件]]></category>

		<category><![CDATA[TBACK]]></category>

		<guid isPermaLink="false">http://m.tanggaowei.com/2008/05/08/76.html</guid>
		<description><![CDATA[VS2005 C++ MFC 智能设备应用程序中，在 Edit 控件里按“TBack”键时，并没有删除光标前的字符，而是最小化当前应用程序。要恢复 Edit 控件的 BackSpace 键功能，方法如下：
1. 函数申明：在 MyProjectDlg.h 中写到“DECLARE_MESSAGE_MAP()”语句之前 
afx_msg LRESULT OnHotKey ( WPARAM wParam, LPARAM lParam );&#160; // 一定要在 DECLARE_MESSAGE_MAP() 之前 
DECLARE_MESSAGE_MAP() 
2. 消息映射：在 MyProjectDlg.cpp 的 BEGIN_MESSAGE_MAP() 段添加代码 
BEGIN_MESSAGE_MAP(&#8230;.) &#8230; ON_MESSAGE( WM_HOTKEY, OnHotKey ) &#8230; END_MESSAGE_MAP() 
3. 函数定义：在 MyProjectDlg.cpp 中实现代码 
LRESULT CMyProjectDlg::OnHotKey ( WPARAM wParam, LPARAM lParam ) { &#160;&#160;&#160; [...]]]></description>
		<wfw:commentRss>http://m.tanggaowei.com/2008/05/08/76.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>VS2005 C++ 字符串相关处理</title>
		<link>http://m.tanggaowei.com/2008/05/08/75.html</link>
		<comments>http://m.tanggaowei.com/2008/05/08/75.html#comments</comments>
		<pubDate>Thu, 08 May 2008 08:42:21 +0000</pubDate>
		<dc:creator>传说一梦</dc:creator>
		
		<category><![CDATA[手机开发]]></category>

		<category><![CDATA[字符串]]></category>

		<guid isPermaLink="false">http://m.tanggaowei.com/2008/05/08/75.html</guid>
		<description><![CDATA[&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 分割字符串 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- #include &#60;string.h&#62; #include &#60;stdio.h&#62; 
char data[] = &#8220;A string\tof ,,tokens\nand some&#160; more tokens&#8221;; char seps[]&#160;&#160; = &#8221; ,\t\n&#8221;;&#160;&#160; // 分隔符字符集 char *token; 
void main( void ) { &#160;&#160; printf( &#8220;%s\n\nTokens:\n&#8221;, data ); &#160;&#160; /* Establish string and get the first token: */ &#160;&#160; token = strtok( data, seps ); &#160;&#160; while( token [...]]]></description>
		<wfw:commentRss>http://m.tanggaowei.com/2008/05/08/75.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>VS2005 C++ MFC 怎样添加事件、映射消息和重载函数</title>
		<link>http://m.tanggaowei.com/2008/05/08/74.html</link>
		<comments>http://m.tanggaowei.com/2008/05/08/74.html#comments</comments>
		<pubDate>Thu, 08 May 2008 08:40:37 +0000</pubDate>
		<dc:creator>传说一梦</dc:creator>
		
		<category><![CDATA[手机开发]]></category>

		<category><![CDATA[MFC]]></category>

		<category><![CDATA[映射消息]]></category>

		<category><![CDATA[添加事件]]></category>

		<category><![CDATA[重载方法]]></category>

		<guid isPermaLink="false">http://m.tanggaowei.com/2008/05/08/74.html</guid>
		<description><![CDATA[VS2005 的 MFC 添加事件、映射消息和重载函数的操作 和 VS6.0 不一样，是在窗口类的属性页里。操作如下：
在“类视图”中，右键单击想要操作的窗口类，点击“属性”。在打开的属性页中，最上一排按钮中的“事件”、“信息”和“重写”分别对应“添加事件”、“映射消息”和“重载函数”的操作。
[ 标签： MFC, 映射消息, 添加事件, 重载方法 ] [ 固定链接：http://m.tanggaowei.com/2008/05/08/74.html ]]]></description>
		<wfw:commentRss>http://m.tanggaowei.com/2008/05/08/74.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
