﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-       [HORSETAIL]-文章分类-Windows编程</title><link>http://www.cppblog.com/horsetail/category/3492.html</link><description>花儿,总会有谢的时候</description><language>zh-cn</language><lastBuildDate>Wed, 21 May 2008 19:47:00 GMT</lastBuildDate><pubDate>Wed, 21 May 2008 19:47:00 GMT</pubDate><ttl>60</ttl><item><title>[原创]一个创建文本编辑框的函数</title><link>http://www.cppblog.com/horsetail/articles/17812.html</link><dc:creator>[HORSETAIL]</dc:creator><author>[HORSETAIL]</author><pubDate>Sat, 20 Jan 2007 05:20:00 GMT</pubDate><guid>http://www.cppblog.com/horsetail/articles/17812.html</guid><wfw:comment>http://www.cppblog.com/horsetail/comments/17812.html</wfw:comment><comments>http://www.cppblog.com/horsetail/articles/17812.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/horsetail/comments/commentRss/17812.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/horsetail/services/trackbacks/17812.html</trackback:ping><description><![CDATA[
		<p>#include "stdafx.h"<br />#include "WINCPP.h"<br />extern HWND NewEdit(HWND hWnd,HINSTANCE hInst)<br />{ HWND hWndEdit;<br /> LoadLibrary(L"riched32.dll");//载如编辑框控件控件<br /> hWndEdit=CreateWindow(L"RichEdit",L"",WS_CHILD|ES_MULTILINE|WS_HSCROLL|WS_VSCROLL|ES_AUTOHSCROLL,0,0,600,600,hWnd,NULL,hInst,NULL);<br /> ShowWindow(hWndEdit,SW_SHOWMAXIMIZED);//创建窗口<br /> UpdateWindow(hWndEdit);<br /> return hWndEdit;<br />}</p>
		<p>//end<br /><br />==============<br />呵呵,是不是很简单啊?</p>
<img src ="http://www.cppblog.com/horsetail/aggbug/17812.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/horsetail/" target="_blank">[HORSETAIL]</a> 2007-01-20 13:20 <a href="http://www.cppblog.com/horsetail/articles/17812.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>