I am studying a book trying to learn vba and in the book it says, "To clear the text box of all contents, simply assign an empty string, also known as empty quotes, to the text box's Value property.
Example:
My question is... where would I actually put this line of code since I cant seem to find the value property in the property sheet of the text box?
Example:
Code:
me.text1.value = ""
My question is... where would I actually put this line of code since I cant seem to find the value property in the property sheet of the text box?