View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
brittonsm brittonsm is offline
external usenet poster
 
Posts: 12
Default Hide a textbox on open of Excel

I want to place a textbox over a few buttons telling the user they
must enable their macros for the worksheet to function. Once they
enable macros I'd like the textbox to hide itself - OnOpen I'm
thinking....

Then after the fiddle with the sheet and make updates I'd like to have
the textbox reappear for the next use BeforeClose probably.

I have this but it doesn't work:

Private Sub Workbook_Open()
TextBox1.Visible = False
End Sub


Thanks