Answers for "get a list of open applications python"

0

get a list of open applications python

import win32gui

def winEnumHandler( hwnd, ctx ):
    if win32gui.IsWindowVisible( hwnd ):
        print (hex(hwnd), win32gui.GetWindowText( hwnd ))

win32gui.EnumWindows( winEnumHandler, None )
Posted by: Guest on July-23-2020

Code answers related to "get a list of open applications python"

Python Answers by Framework

Browse Popular Code Answers by Language