CAFE

vb6 api

WaitForSingleObject

작성자프랭크핀|작성시간09.01.30|조회수274 목록 댓글 0

Private Type STARTUPINFO
    cb As Long
    lpReserved As String
    lpDesktop As String
    lpTitle As String
    dwX As Long
    dwY As Long
    dwXSize As Long
    dwYSize As Long
    dwXCountChars As Long
    dwYCountChars As Long
    dwFillAttribute As Long
    dwFlags As Long
    wShowWindow As Integer
    cbReserved2 As Integer
    lpReserved2 As Long
    hStdInput As Long
    hStdOutput As Long
    hStdError As Long
End Type

Private Type PROCESS_INFORMATION
    hProcess As Long
    hThread As Long
    dwProcessID As Long
    dwThreadID As Long
End Type

Private Declare Function WaitForSingleObject Lib "kernel32" _
       (ByVal hHandle As Long, ByVal dwMilliseconds As Long) As Long

Private Declare Function CreateProcessA Lib "kernel32" (ByVal _
lpApplicationName As Long, ByVal lpCommandLine As String, ByVal _
lpProcessAttributes As Long, ByVal lpThreadAttributes As Long, _
ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, _
ByVal lpEnvironment As Long, ByVal lpCurrentDirectory As Long, _
lpStartupInfo As STARTUPINFO, lpProcessInformation As _
PROCESS_INFORMATION) As Long

Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long

Private Const NORMAL_PRIORITY_CLASS = &H20&
Private Const INFINITE = -1&

Public Sub ExecCmd(cmdline$)
   
    Dim proc As PROCESS_INFORMATION
    Dim start As STARTUPINFO
   
    'STARTUPINFO 구조체 초기화:
    start.cb = Len(start)
   
    'shelled 프로그램을 실행시킨다.
    ret& = CreateProcessA(0&, cmdline$, 0&, 0&, 1&, NORMAL_PRIORITY_CLASS, 0&, 0&, start, proc)
   
    'shelled 프로그램이 종료될때까지 기다린다.
   
    ret& = WaitForSingleObject(proc.hProcess, INFINITE)
   
    '종료후 Process를 닫는다.
    ret& = CloseHandle(proc.hProcess)
End Sub

Private Sub Command1_Click()
   
    Text1 = ""
    ExecCmd "notepad.exe"
    Text1 = "Process Finished (메모장 종료)"

End Sub

Private Sub Command2_Click()
    End
End Sub

다음검색
현재 게시글 추가 기능 열기

댓글

댓글 리스트
맨위로

카페 검색

카페 검색어 입력폼