asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,284
- Office Version
- 2013
- Platform
- Windows
Good Day,
Is it possible hide the top of userform's closing bar with vba code?
My userform populates full screen with below code, I want even closing bar will be dissappear and will show full screen of the project.
Many Thanks
Is it possible hide the top of userform's closing bar with vba code?
My userform populates full screen with below code, I want even closing bar will be dissappear and will show full screen of the project.
Many Thanks
VBA Code:
Private Sub UserForm_Initialize()
With Application
.WindowState = xlMaximized
Width = .Width
Height = .Height
End With
End Sub