Form Centering

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
 
R

Rick B

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
 
G

Guest

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?
 
B

Becca

You could go to Form Properties
Format Tab
Set scroll bar to neither
Record Selectors to no
That might work better for you.
Rebecca
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top