Label

i want the end user to click on the label and have it display an information and make the click again and have the information hide. Yes, i have try the option of hide under in event handler with button down but to recall the label at the second click is my challenge. please,what can i do?

Function MouseDown(X As Integer, Y As Integer) As Boolean If Me.Text = "" Then Me.Text = "The information" Else Me.Text = "" End Return True End Function

Thanks to ELI Ott,