i want to make it possible for users to change the font color of selected text in a subform. the menus are locked out so the users don't have access to this feature.
I tried using excel to create the code, but access wants an object, which I thought would be simple, but then realized if I directed it to the "messages" textbox, then the whole thing would be changed... i only want to change the color of the text selected when the button is clicked...
excel vba is as follows
I tried using excel to create the code, but access wants an object, which I thought would be simple, but then realized if I directed it to the "messages" textbox, then the whole thing would be changed... i only want to change the color of the text selected when the button is clicked...
excel vba is as follows
Code:
With Selection.Font
.Color = -16776961
.TintAndShade = 0
End With
Comment