phpjunkie420

Results 6 issues of phpjunkie420

I was using getattr on the hwnd attribute to check if the window has been closed and it is generating _ctypes.COMError. Expected since I'm not using hasattr. I want to...

Using psutil with pyvda and inheriting psutil.Process into AppView.

I used `getattr` in `window.hwnd` to see if the window has been closed. I did this to see if it would generate an exception and it did. The exception was...

Windows update KB5034765 completely broke pyvda. ``` Traceback (most recent call last): File "C:\Users\phpjunkie\Python\Scripts\firefox.pyw", line 5, in from pyvda import AppView, VirtualDesktop File "C:\Users\phpjunkie\AppData\Local\Programs\Python\Python311\Lib\site-packages\pyvda\__init__.py", line 58, in from .pyvda import...

File Explorer doesn't keep position and size with, "Control Interface*: Windows 10 Ribbon." I ether have to change this back to Windows 11 Command Bar or set file explorer to...

File Explorer

```python def hwnd_exists(hwnd) -> bool: _exists = False def enum_windows(hwnd, _hwnd): nonlocal _exists if hwnd == _hwnd: _exists = True win32gui.EnumWindows(enum_windows, hwnd) return _exists ``` I used the `pyvda.utils.Managers().view_collection.GetViewsByZOrder()` to...