Force a tall form to always load with top part visible.

  • Thread starter Thread starter Chrisso
  • Start date Start date
C

Chrisso

Hi All

My main form is quite tall as most of my users have large screens. On
smaller screens however it must be viewed using scroll bars.

This is fine but when the form loads it always displays the form half
way down and the user cannot see the top of the form without manually
using the scroll bars.

I want the form to load with the top of the form *always* showing. Is
this possible?

Thanks in advance,
Chrisso
 
My guess would be that the wrong control gets the focus when the form is
open. Make sure the topmost control gets the focus when you open the form.
Take a look at tabindex for each control or look at taborder in the form
properties.
Changing this should take care of it.

hth
 
My guess would be that the wrong control gets the focus when the form is
open. Make sure the topmost control gets the focus when you open the form.
Take a look at tabindex for each control or look at taborder in the form
properties.
Changing this should take care of it.

hth
--
Maurice Ausum









- Show quoted text -

Ah yes. That was exactly the problem. Many thanks.

Chrisso
 
Back
Top