|
AllowSetForegroundWindow The AllowSetForegroundWindow function enables the specified process to set the foreground window using the SetForegroundWindow function. VB4-32,5,6 Declare Function AllowSetForegroundWindow Lib "user32.dll" (ByVal dwProcessId As Long) As Long |
Operating Systems Supported |
Requires Windows 2000 or later; Requires Windows ME |
· dwProcessId [in] Specifies the identifier of the process that will be enabled to set the foreground window. If this parameter is ASFW_ANY, all processes will be enabled to set the foreground window. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. The function will fail if the calling process cannot set the foreground window. To get extended error information, call GetLastError. |
|
|
|