How to fullscreen a 3rd-party application by its hwnd?
I’m looking to fullscreen 3rd-party windows in a (hopefully) reliable and consistent way for a window manager project. The goal is to have the fullscreen window cover the taskbar completely.
How to fullscreen a 3rd-party application by its hwnd?
I’m looking to fullscreen 3rd-party windows in a (hopefully) reliable and consistent way for a window manager project. The goal is to have the fullscreen window cover the taskbar completely.
Replicating Windows Run behavior using either `CreateProcessW` or `ShellExecuteExW`?
The Windows Run dialog (Win+R) is used to launch arbitrary programs from a user-inputted string. What’s cool about it is that it can handle spaces in the program path without any escaping.