I'm using COM in Python and I want the object to run in background - hidden. With Excel I do:
Import win32com.client
Excel=win32com.client.Dispatch("Excel.Application")
Excel.Visible=1
but my application do not have property .Visible
- is there any other way to hide it? Maybe some special parameter to Dispatch?
Thanks in advance R
If you know your application title or class, you can hide it via ShowWindow:
HTH, Pablo