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?
No its not allowed though you are using
SetWindowPosthe MSDN docs on Form.Size property says: