Apr 30, 2002 #1 Krash878 Programmer May 8, 2001 172 US What would be the code to do this? I have a text box whose default value is "*" and when it gets focus I want the text box to clear. Thanks Krash
What would be the code to do this? I have a text box whose default value is "*" and when it gets focus I want the text box to clear. Thanks Krash
Apr 30, 2002 #2 asiandoll Programmer Apr 24, 2002 19 BB Private Sub Textbox_GotFocus() Textbox= "" End Sub Hope that this helps you... Upvote 0 Downvote
Apr 30, 2002 #3 xvertex Programmer Jan 6, 2002 17 CA Private Sub txtYourField_GotFocus() Me.txtYourField.Value = "" End Sub Upvote 0 Downvote