i am trying to clear a textbox called "text box 2"
i have tried the following:
TextBox2.Value = ""
^ gets a 424 object required error
TextBox2.Text = ""
^ gets a 424 object required error
Worksheets("Proposal").Textbox2.Value = ""
^ gets a runtime error 438, object doesnt support this property or method
Worksheets("Proposal").Textbox2.Text = ""
^ gets a runtime error 438, object doesnt support this property or method
Proposal.TextBox2.Text = ""ActiveSheet.OLEObjects("text box 2").Object.Value = ""? Also, is it called "text box 2", or is itTextBox2?TextBox2? Right now, as you can see, we're just making some guesses....