Form Centering

  • Thread starter Thread starter Tracey
  • Start date Start date
T

Tracey

I have created a form that has a tab control. When I move
from tab to tab, the form either recenters or shifts up
and down, making parts of th form not visible. Any Idea
how to stop this from happening? I posted this once
berfore and didn't get a response, Is this the correct
group for this posting?

Thanks
 
Not sure if this will help, but on large forms with alignment issues, I
normally force them to maximize and fill the whole screen. You can do this
by placing code in the OnOpen event like...

Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub


HTH
Rick B


I have created a form that has a tab control. When I move
from tab to tab, the form either recenters or shifts up
and down, making parts of th form not visible. Any Idea
how to stop this from happening? I posted this once
berfore and didn't get a response, Is this the correct
group for this posting?

Thanks
 
did it an it is still shifting up and down. I even sized
the form and all feilds to fit on the available screen
space. Any other suggestions?
 
You could go to Form Properties
Format Tab
Set scroll bar to neither
Record Selectors to no
That might work better for you.
Rebecca
 
Back
Top