Hi,
I have a GUI Windows application and I want to control it using the extension Win32gui in Python. How can I find the string s
that I must give to the FindWindow function?
I need to use the following code:
import win32gui as gui
gui.FindWindow(s, None)
Thaks!