J
Jacob
I have a form taht I set up to be able to underline text. The first problem
is that it underlines everything in the memo box and the second is that it
will not save it that way. Is there a way to accomplish this...here is a
copy of the code I placed behind a command button.
If Me.Command2.Caption = "U" Then
Me.txt.FontUnderline = True
Me.Command2.Caption = "U + On"
Else
Me.txt.FontUnderline = False
Me.Command2.Caption = "U"
End If
Jacob
is that it underlines everything in the memo box and the second is that it
will not save it that way. Is there a way to accomplish this...here is a
copy of the code I placed behind a command button.
If Me.Command2.Caption = "U" Then
Me.txt.FontUnderline = True
Me.Command2.Caption = "U + On"
Else
Me.txt.FontUnderline = False
Me.Command2.Caption = "U"
End If
Jacob