asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,284
- Office Version
- 2013
- Platform
- Windows
Hello,
I have a userform which Height"1080" , Width"1920" and with below code when its populated if I run the whole code, the background picture doesn't fit at the screen even though picture size is 1080*1920. The reason of that size is I'm going to use that userform at the big screen tv.
Is there any way to fix that problem.
Thanks
I have a userform which Height"1080" , Width"1920" and with below code when its populated if I run the whole code, the background picture doesn't fit at the screen even though picture size is 1080*1920. The reason of that size is I'm going to use that userform at the big screen tv.
Is there any way to fix that problem.
Thanks
Code:
Private Sub UserForm_Initialize()
With Application
.WindowState = xlMaximized
'Zoom = Int(.Width / Me.Width * 100)
Width = .Width
Height = .Height
End With
End Sub