Userform Title

L

LB79

Hi - this is starting to drive me nuts!
I have a user form that i have captioned "Menu", but when i load the
form the title bar is just blue with no title. What am i doing wrong?

Thanks
 
D

Dave Peterson

I'm not sure how you're doing it, but maybe you could assign the caption in
code:

Option Explicit
Private Sub UserForm_Initialize()
Me.Caption = "menu"
End Sub
 
Top