摘要:
PDH全拼是Performance Data Helper,可以通过它很方便的查看系统资源使用情况,以及每个进程的占用资源。\Process(*)\% Processor Time 每个进程的CPU占用率\Process(*)\Working Set每个进程的占用内存typeperf "\Process(*)\% Processor Time"typeperf "\Process(*)\Working Set"typeperf "\Memory\% Committed Bytes In Use"typeperf "\Proc 阅读全文
摘要:
在MFC或者WTL工程里,如果使用了RichEdit控件,会发现程序无法启动,编译器却没给出任何警告或错误。在网上找了下资料,原来是没有加载支持RichEdit的动态库。在MFC下面添加:AfxInitRichEdit();在WTL下面添加:HMODULE hRichDll = LoadLibrary(_T("riched20.dll"));程序结束时:if(hRichDll){ FreeLibrary(hRichDll); hRichDll= NULL;}-------------------------------------------我是分割线----------- 阅读全文