blossomthe2nd
Active Member
- Joined
- Oct 11, 2010
- Messages
- 450
Hi Experts
I designed a few Userforms on my PC that has a high resolution , the USERFORM has a code that makes it full screen.
But my issue is that other users have a lower resolution so when the userform opens on their PCs they can not see the ends and right side of the form - it also does not allow the form to scroll across.
Can anyone advise a solution where either
a) the code full screens to the users resolution
b) or where we can ahve scroll bars so the users may move the USerForm to see all questions
Thanks guys
Anne
I designed a few Userforms on my PC that has a high resolution , the USERFORM has a code that makes it full screen.
HTML:
Dim lngWinState As XlWindowState
With Application
.ScreenUpdating = False
lngWinState = .WindowState
.WindowState = xlMaximized
Me.Move 0, 0, .Width, .Height
.WindowState = lngWinState
.ScreenUpdating = True
End With
But my issue is that other users have a lower resolution so when the userform opens on their PCs they can not see the ends and right side of the form - it also does not allow the form to scroll across.
Can anyone advise a solution where either
a) the code full screens to the users resolution
b) or where we can ahve scroll bars so the users may move the USerForm to see all questions
Thanks guys
Anne