I have a user form and in order to get the form in full screen mode I have this lines on the initialize:
Application.WindowState = xlMaximized
UserForm.Zoom=Int(Application.width/UserForm.width*100)
UserForm.StartUpPosition=0
UserForm.Left= Application.Left
UserForm.Top = Application.Top
UserForm.Width = Application.Width
UserForm.Height = Application.Width
The form enters full screens mode but all the button caption and multipage titles jumps to the left the alignment is all goes wrong.
Tried to play with the UserForm.zoom command line and it seems that the less the zoom is the less the text jumps left it is connected somehow but I can’t figure it out