I have an external .exe
file that I need to run on my PC for a demo.
I'm running the .exe
file from the command line (from CMD) and when I run the .exe
file it opens up in a winforms window with the title bar as a regular window.
I need to be able to run that .exe
file with the following restrictions:
- Completely hide the title bar, so that the window won't have any border at all.
- Open the window in a split screen mode, so that it will occupy the right side of the screen to allow me to open a second window on the left side.
I thought about trying to wrap it in winform of my own and run it from there, but my guess is that there may be some parameters I can pass to the command line when running the .exe
file.
Is there?