Posts by All World • 66 points
2 posts
-
2
votes2
answers315
viewsA: Change button name in event
If this is your case, you can simply delete the control button and then delete the event, before, save the code not to be deleted together. After you do this, create again the control button and…
-
3
votes1
answer905
viewsA: How to count repeated words in a string and find your position?
See if it helps you: string procurar = "cachorro"; string nomes = "vaca cachorro vaca cachorro gato cavalo"; MatchCollection matches = Regex.Matches(nomes, procurar); foreach (Match item in matches)…