ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   USERFORM QUESTIONS ?? (https://www.excelbanter.com/excel-programming/437811-userform-questions.html)

Jay Dean

USERFORM QUESTIONS ??
 
Hi - I have 2 questions:

1. How do I minimize and maximize a userform on my screen?

2. How do I keep combobox1 hidden but only have it shown when I point
the mouse in its location?

Thanks
Jay



*** Sent via Developersdex http://www.developersdex.com ***

Harald Staff[_2_]

USERFORM QUESTIONS ??
 
"jay dean" wrote in message
...
Hi - I have 2 questions:

1. How do I minimize and maximize a userform on my screen?


See FormFun as http://www.bmsltd.co.uk/Excel/SBXLPage.asp#VBA -which I
believe is as close as you get.


2. How do I keep combobox1 hidden but only have it shown when I point
the mouse in its location?


Put a Label1 in the exact same position as Combobox1. Set its caption to
nothing, and its backstyle to transparent if your form is decorated.
Userform code:

Private Sub UserForm_Initialize()
Me.ComboBox1.Visible = False
End Sub

Private Sub UserForm_MouseMove(ByVal Button As Integer, _
ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
Me.ComboBox1.Visible = False
End Sub

Private Sub Label1_MouseMove(ByVal Button As Integer, _
ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
Me.ComboBox1.Visible = True
End Sub

HTH. Best wishes Harald



All times are GMT +1. The time now is 08:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com