이진 검색
CString CAutoDicDlg::SearchDic( CString strResult ) { // TODO: Add your control notification handler code here CString strDic, strParam; BOOL bUp = TRUE; int nCurrentPos=0, nFirstPos, nLastPos, nBeforePos; int nCount, nKeyLength, nTokenLength, nSearchCnt, nGap; TCHAR *buf, *token, *keyword, *keyhead; const TCHAR sep[] = _T("/"); strParam = strResult; keyword = strParam.GetBuffer(1024+1); nKeyLen..
2011. 3. 3.
[Etc] 외부 프로그램 실행
외부 프로그램 실행 ShellExecute(NULL, "open", "a.htm", NULL, NULL, SW_SHOW); ShellExecute(Ex) 사용법 예제 12가지 프로그램을 띄우거나 파일을 실행할경우 ShellAPI 함수인 ShellExecute() 를 사용합니다. 이 함수는 윈도우즈 탐색기에서 파일을 선택하고 더블클릭하는 기능과 동일한 동작을 합니다. 다음은 ShellExecute() 의 몇가지 사용예입니다. (1) 파일과 연관(association)된 프로그램으로 파일을 엽니다 ShellExecute(Handle, 'open', PChar('test.txt'), nil, nil, SW_SHOW); (2) notepad.exe 에 파라미터로 config.sys 파일을 주어 메모장을 실행합니..
2011. 2. 18.