The Form Response Viewer presents a very small window of information relative to screen size. Please change this utilize the entire available screen for viewing responses.
We use forms for long-answer responses, and the current viewer makes viewing them very awkward, with much scrolling, and wastes a lot of screen real estate
Hello!
To make the Form Response Viewer utilize the entire screen, you can adjust its properties to maximize the window. Set the form to full screen by using this.WindowState = FormWindowState.Maximized; and this.FormBorderStyle = FormBorderStyle.None;. Additionally, ensure that inner panels stretch by setting their anchor properties with panel1.Anchor = AnchorStyles.Top | AnchorStyles.Right | AnchorStyles.Bottom | AnchorStyles.Left;. This will make the form and its inner panels expand to fill the entire screen, reducing the need for scrolling and making better use of the available screen space.