Does anyone know if its actually possible to set the height of a window such that it is greater than the screen size using C#?
I tried something like this on several windows:
SetWindowPos(handle, new IntPtr(0), 0, 0, 1024, 4000,
SetWindowPosFlags.SWP_SHOWWINDOW);
However, they never go past the screen size - is there a way around this?