I have a form with a text box and three check boxes... One is called optBold one is called optItalic and the final is called optUnderline. When any of them is clicked then _all_ of the text in the text box is changed to either bold, italic, underline or a combination of all of them. What I really want is for the text in the box to stay the same and the next text that is typed to be underlined or bold or italic or whatever and so on... This is the main part of my code (I think I can remember it all)...

Private Sub optBold_Click()

If optBold Then txtMain.FontBold = True Else txtMain.FontBold = False

End Sub

...and so on for optItalic_Click() and optUnderline_Click().

Please help the newbie!
Thanks in advance...

Anton LaVey