Hey guys! Me again.
I want to change some text inside a textbox when a checkbox is checked.
I tried many things, but none seems to work.
I need that, when checkbox gets checked, the textbox value gets deleted from backwars until a dot. Then, place another predefined text immediately after this dot.
If possible, I also want that, before this, the app checks if the textbox is not empty. I think that this might work:
If Caminho.Text = "" Then
'don't do anything
Else
'do the process I described above
End If
Is this right?
Thanks!