I'm experimenting with check boxes, and so far I have bold, italic etc. etc. But I want to make it, so when you click one of these check boxes is, it will fill words such as "****" with "#&@&" but, I gave up on the idea to fill it with "#&@&" because I couldn't figure it out, so then I tried just deleting the work from the final showing. But now, I can't seem to get that to work, so anywayz, here's my code so far.
Private Sub chkL_Click()
If chkL.Value = vbChecked Then
If LblUser.Caption = "****" Then
LblUser.Caption = -"****" = True
Else
LblUser.Caption = -"****" = False
End If
End If
End Sub
If there is a way to fill in the word with simbols, please let me know!!




Reply With Quote