Shell & Wait 的程序怎么写?

Shell  Wait 的程序怎么写?
━━━━━━━━━━━━━━━━━━━━━━━━━━

希望某一 VB 程序利用  Shell 执行某一个外部程序 (假设是 notepad.exe )之后,就一直等到此一程序结束执行时, 才回到 VB 程序继续执行, 该怎么办到呢?

当我们调用  Shell 时, 会传回一个数值, 此一数值称为 Process Id, 利用此一 Process Id, 我们可以调用 OpenProcess API 取得 Process Handle, 然后再利用 Process Handle 调用 WaitForSingleObject, 即可等待被  Shell 执行的程序执行完毕, 才继续向下执行。细节如下:

1. API 的声明:
Const SYNCHRONIZE  = &H100000
Const INFINITE  = &HFFFFFFFF
Private Declare Function OpenProcess Lib " kernel32( ByVal dwDesiredAccess  As  Long,  ByVal bInheritHandle  As  Long,  ByVal dwProcessId  As  Long As  Long
Private Declare Function CloseHandle Lib " kernel32( ByVal hObject  As  Long As  Long
Private Declare Function WaitForSingleObject Lib " kernel32( ByVal hHandle  As  Long,  ByVal dwMilliseconds  As  Long As  Long

注:如果以上的声明放在「一般模块」底下, 应将  Declare 之前的  Private 保留字去掉, 并且在  Const 之前加上  Public 保留字。



2. 程序范例: (以执行 Notepad 程序为例 )

Dim pId  As  Long, pHnd  As  Long  ' 分别声明 Process Id 及 Process Handle 变数
pId  Shell (" Notepad", vbNormalFocus ' Shell 传回 Process Id
pHnd  OpenProcess (SYNCHRONIZE, 0, pId ' 取得 Process Handle
If pHnd  <> Then
    Call 
WaitForSingleObject (pHnd, INFINITE ' 无限等待,直到程序结束
    
Call CloseHandle (pHnd )
End If
发布了14 篇原创文章 · 获赞 7 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/nxhujiee/article/details/6877238