02 2010 档案
摘要:static DWORD CALLBACK EditStreamCallBack(DWORD dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb){ char *pstr = (char *)dwCookie; int nLen = strlen(pstr); if(nLen<cb) { CopyMemory(pbBuff,pstr,nLen); } e...
阅读全文
摘要://在OnCreate中添加 //设置正常字体 LOGFONT lf; afxGlobalData.fontRegular.GetLogFont(&lf); afxGlobalData.fontRegular.DeleteObject(); lf.lfHeight = -12; lstrcpy(lf.lfFaceName, _T("宋体")); // using without s...
阅读全文