摘要:
char szHostName[MAX_PATH + 1]; gethostname(szHostName, MAX_PATH); //得到计算机名 hostent *p = gethostbyname(szHostName); //从计算机名得到主机信息 char *pIP1 = inet_nto 阅读全文
摘要:
1、宏定义一个自定义消息 #define WM_MY WM_USER+1 2、定义一个消息响应函数 afx_msg LRESULT WM_MyMessage(WPARAM wparam, LPARAM lparam);//protect类型 3、注册消息 BEGIN_MESSAGE_MAP(CGra 阅读全文
摘要:
原因:MFC对象不支持多线程操作,不能供多个线程进程使用,所以尽量不要在线程里面更新界面。 解决办法: 1、将工程改为release 2、使用控件来SetWindowText 3、在线程里面发送消息 SendMessageTimeout(怎么用看另外的博客) 阅读全文
摘要:
1、判断某路径的文件是否存在 BOOL PathFileExists( _In_ LPCTSTR pszPath );2、CFileFind类 CFileFind finder; BOOL bWorking = finder.FindFile(_T("*.*")); while (bWorking) 阅读全文