VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Shell out to a 32-bit application and wait until task completes

Anonymous  (267 Submissions)   Windows API Call/Explanation   Visual Basic 4.0 (32-bit)   Unknown Difficulty   Tue 24th November 1998   Mon 8th February 2021

Shell out to a 32-bit application and wait until task completes

API Declarations


Private Declare Function OpenProcess Lib "Kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Private Declare Function GetExitCodeProcess Lib "Kernel32" (ByVal hProcess As Long, lpExitCode As Long) As Long
Private Declare Sub Sleep Lib "Kernel32" (ByVal dwMilliseconds As Long)
Const STILL_ACTIVE = &H103
Const PROCESS_QUERY_INFORMATION = &H400

Rate Shell out to a 32-bit application and wait until task completes (2(2 Vote))
Shell out to a 32-bit application and wait until task completes.bas

Shell out to a 32-bit application and wait until task completes Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters