摘要:
1 // 2 // 函数 -- GetAppPath() 3 // 4 // 功能 -- 获取程序的当前路径(路径中带"\\", 不含执行文件名称"\\xx.exe") 5 // 6 // 注释 -- 7 // . #include... 阅读全文
摘要:
中说的 有三个函数可以将字符串的内容转换为字符数组和C—string 1.data(),返回没有”\0“的字符串数组 2,c_str(),返回有”\0“的字符串数组 3,copy() ................................................................. int 转 CString: CStrin... 阅读全文
摘要:
1 // 释放【BMP文件】到指定的文件夹 2 BOOL ReleaseBMPRes(LPCTSTR szDLLFullPath, UINT uResID, LPCTSTR szResType) 3 { 4 if (uResID<=0 || !szResType) 5 { 6 return FALSE; 7 } 8 9 HRSR... 阅读全文
摘要:
1 // 释放【TXT文件】到指定的文件夹 2 BOOL ReleaseTXTRes(LPCTSTR szFullPath, UINT uResID, LPCTSTR szResType) 3 { 4 if (uResIDm_hInstance, MAKEINTRESOURCE(uResID), szResType); 10 if ( NULL == hRsrc ) 11... 阅读全文
摘要:
1 =============== Windows资源文件的读取 =============== 2 3 Windows资源操作函数 4 12 LoadAccelerators 加载快捷键资源 5 6 14 LoadBitmap 加载位图资源 7 8 16 LoadCursor 加载光标资源 9 10 18 LoadIcon ... 阅读全文
摘要:
1 // 删除指定文件夹目录中全部文件(包含文件夹) 2 void DeleteDirectory(CString strDir) 3 { 4 // 首先删除文件及子文件夹 5 CFileFind ff; 6 BOOL bFound = ff.FindFile(strDir+L"\\*", 0); ... 阅读全文
摘要:
Thread.h Thread.cpp 阅读全文
摘要:
CThread.h CThread.cpp 阅读全文
摘要:
1 Windows窗口消息大全,全不全自己看 2 3 ////////////////////////////////////////////////////////////////////////// 4 #include "AFXPRIV.H"//消息值的定义来源 5 #include "Dde.h"//DDE消息值的定义来源 6 #include "C... 阅读全文
摘要:
1 /*【Edit控件】 2 一、换行: 3 . 将控件的属性设置为Mutilines->true; 4 . 将控件的另一个属性设置为Want return->true. 5 . 水平滚动条,控件属性设置为:Horizontal Scroll->TRUE 6 . 垂直滚动条,控件属... 阅读全文