05 2005 档案
Creating a Dialog-based App(转载)
摘要:Creating a Dialog-based App Home Back To Tips Page This is one o... 阅读全文
posted @ 2005-05-13 11:35 Michael Zhao 阅读(1328) 评论(0) 推荐(0)
Unicode-enabling Microsoft C/C++ Source Code(转载)
摘要:Cheat Sheet:Unicode-enabling Microsoft C/C++ Source Code Contents Initial Steps I/O, Database Stream I/O BOM Values Constants & Globals Data Types Platform String API TCHAR String API References ... 阅读全文
posted @ 2005-05-13 11:02 Michael Zhao 阅读(3048) 评论(0) 推荐(0)
Building Unicode applications in MFC(转载)
摘要:What's The Point? Windows NT4 and 2K run on Unicode. A great many of the net API functions provided by Microsoft® require Unicode and translating strings in and out of Unicode just to pu... 阅读全文
posted @ 2005-05-13 09:53 Michael Zhao 阅读(649) 评论(0) 推荐(0)
Int,Float,Char *,CString之间的转换(转载)
摘要:Int,Float,Char *,CString之间的转换 Int 转CString : int n=1; CString str; str.Format("%d",n); CString 转 Int CString str="1"; int n=atoi(str.GetBuffer(0)); char * 转 CString: char sz[128]; CString s... 阅读全文
posted @ 2005-05-12 18:06 Michael Zhao 阅读(12825) 评论(3) 推荐(0)
Adding Entries to the Standard Context Menu(转载 from msdn)
摘要:Adding Entries to the Standard Context Menu Internet Development Index This tutorial explains how to add an entry into the standard context menus in Microsoft Internet Explorer that executes... 阅读全文
posted @ 2005-05-07 18:11 Michael Zhao 阅读(744) 评论(0) 推荐(0)