I have a TForm object whose height is greater than the required vertical resolution of my screen.
For some reason, Windows doesn't allow the visible (client?) area of the form to exceed the screen resolution, so vertical scrollbars appear on my form.
How would I get a TBitmap image or screenshot of the entire form (no scrollbars, all form components visible) so that all content of the form is visible?
GetFormImage
method ? ; – ShanneyGetFormImage
is what we're currently using. – ApiaryTForm
object, place a lot of vertical content to cause your (enabled) vertical scrollbars to automatically appear. The total height of the content should exceed your vertical screen resolution. CallGetFormImage
, and you will see that lower content is discarded. – Apiary