jyothi_priya
14 years agoContributor
How to minimize a userform?
Hi, Is there any control or a property of the userform where I can minimize it whenever I want just like we do with normal windows??? Thanks Priya
- 14 years agoHi,
Add a loop to the Main routine to constantly check the form's Visible property and exit the loop when it equals false:Sub Main()
UserForms.TestForm.Show
While UserForms.TestForm.Visible
' do nothing
Wend
End Sub