Hi
I have a check box, that when clicked it inserts "t/s " at the beginning of a text box keeping other comments that may be in already...
When I uncheck the box, I dont want the text box to be null, I want it to remove just the specific part, "t/s "
Is this possibe? and how?
Thx
Darin
I have a check box, that when clicked it inserts "t/s " at the beginning of a text box keeping other comments that may be in already...
When I uncheck the box, I dont want the text box to be null, I want it to remove just the specific part, "t/s "
Is this possibe? and how?
Code:
Private Sub chkTsh_Click()
If Me.chkTsh = True Then
Me.tInvNote = "t/s " & Me.tInvNote
Else
'Me.tInvNote = Null
End If
End Sub
Thx
Darin