i have a few letters that i've made into access forms. is there any way for a user to edit text (change to bold face, remove phrases, etc.) on such a form? right now, the text is in labels, which can't be edited. suggestions?
In the Form_Open event have the code set the textBox contents to the standard boilerplate content. Users can then edit the content before printing.
Private Sub Form_Open()
txtPara1 = "Now is the time for all good men to come to the aid of the party."
txtPara2 = "The quick brown fox ran over the sleeping policeman"
etc .. ..
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.