반응형 IT창고307 내컴퓨터 찾아보기 #pragma region 내컴퓨터 찾아 보기 void CShellView::OnShellMycomfind() { // TODO: 여기에 명령 처리기 코드를 추가합니다. ITEMIDLIST *pidlBrowse; char pszPathName[MAX_PATH]; CString strPath; lstrcpy (pszPathName, strPath.GetBuffer(strPath.GetLength())); BROWSEINFO BrInfo; memset(&BrInfo, 0, sizeof(BrInfo)); BrInfo.hwndOwner = GetSafeHwnd(); BrInfo.pidlRoot = NULL; BrInfo.pszDisplayName = pszPathName; BrInfo.lpszTitle = "이.. 2008. 2. 14. getmicrotime() function mint_getmicrotime() { list($usec, $sec) = explode(' ', microtime()); return ((float)$usec + (float)$sec); } 2008. 2. 14. string 계산 로직 void Ctest2View::OnBnClickedButton1() { // TODO: 여기에 컨트롤 알림 처리기 코드를 추가합니다. CString str; int ndxPrev, ndxNext, ndxEnd; CString temp1, temp2, temp3; str.Format("a||1||b||2||c||3"); for(int i=1; i 2008. 2. 14. MFC 로 구현한 문자열 단어단위 역순 출력 CString str; CString token; CStringArray rev_str; int curPos= 0; str.Format(_T("Do or do not. there is no try")); str.MakeReverse(); while ((token = str.Tokenize(" ", curPos)) != "") { rev_str.Add(token); } int ndx = rev_str.GetSize(); CString result; CString word_format; while(ndx) { word_format.Format("%s ", rev_str[ndx-1]); result += word_format; ndx--; } AfxMessageBox(result); 2008. 2. 13. 이전 1 ··· 40 41 42 43 44 45 46 ··· 77 다음 반응형