摘要:
CString file; TCHAR path[MAX_PATH]; GetModuleFileName(NULL,path,MAX_PATH); *_tcsrchr(path,'\\')=0; WIN32_FIND_DATA FindData; HANDLE hFile; file.Format("%s\\v.exe",path); hFile=FindFirstFile(fil... 阅读全文
摘要:
CRect rc; ::SystemParametersInfo(SPI_GETWORKAREA,0,&rc,0); CRect m_curRect; GetWindowRect(m_curRect); //设置位置 m_curRect.left=rc.right-m_curRect.Width()-100; m_curRect.top=rc.top+40;//-m_curRect.Height... 阅读全文