- 프로세스 생성할 수 있는 함수
- 운영체제가 직접 제공하는 것이 아니라 쉘이 제공함
- 윈도우에서 탐색기는 항상 설치 되므로 언제든지 사용 가능
- HINSTANCE ShellExecute(HWND hWnd, IpOperation, lpFile, lpParameters, lpDirectory, nShowCmd);
> IpOperation
edit
Launches an editor and opens the document for editing. If lpFile is not a document file, the function will fail.
explore
Explores a folder specified by lpFile.
find
Initiates a search beginning in the directory specified by lpDirectory.
open
Opens the item specified by the lpFile parameter. The item can be a file or folder.
Prints the file specified by lpFile. If lpFile is not a document file, the function fails.
NULL
The default verb is used, if available. If not, the "open" verb is used. If neither verb is available, the system uses the first verb listed in the registry.
'programing > MFC' 카테고리의 다른 글
간단한 Popup Menu 만들기 (0) | 2017.05.10 |
---|---|
슬라이드 컨트롤 사용시에 (0) | 2017.03.29 |
TRACE (0) | 2017.01.11 |
API/MFC에서 Alt키 (VK_MENU) 막는 방법 (0) | 2014.12.21 |
Using the List Control (0) | 2014.07.31 |