Hi Charles,
I have a program that I put together,
which provides me with the ProcessID of a hWnd,
using the GetWindowThreadProcessId API to obtain such.
Would you please add a function to your WindowInfo plugin that would provide the ProcessID of a hWnd?
Read more
I have a program that I put together,
which provides me with the ProcessID of a hWnd,
using the GetWindowThreadProcessId API to obtain such.
Would you please add a function to your WindowInfo plugin that would provide the ProcessID of a hWnd?
Code:
$COMPILE EXE
$REGISTER NONE
$INCLUDE "WIN32API.INC"
FUNCTION PBMAIN AS LONG
DIM gsTitle AS GLOBAL STRING
EnumWindows CODEPTR(EnumWindowsProc), 0
END FUNCTION
FUNCTION EnumWindowsProc(BYVAL lHandle AS LONG...
Read more