Userform Title

  • Thread starter Thread starter LB79
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top