My friend and I are making an app called K.S.I.L.T (Key Stroke Invisible Launcher Tool) that allows you to open up apps and basically executable files in general by using key shortcuts.
We want to make it hidden to the user but if they pressed say "Alt + numpad8" it would open up the selected app. However
this.Hide(); +
this.ShowinTaskbar = false;
do not work because they disable key/keycode input. Note: we are using
Process.Start(filepath*);
to open the files inside of an if statement taking the keycodes.