Apr 30, 2002 #1 Krash878 Programmer Joined May 8, 2001 Messages 172 Location 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 Joined Apr 24, 2002 Messages 19 Location BB Private Sub Textbox_GotFocus() Textbox= "" End Sub Hope that this helps you... Upvote 0 Downvote
Apr 30, 2002 #3 xvertex Programmer Joined Jan 6, 2002 Messages 17 Location CA Private Sub txtYourField_GotFocus() Me.txtYourField.Value = "" End Sub Upvote 0 Downvote