Posts by Fernando Neves • 117 points
5 posts
-
0
votes0
answers755
viewsQ: Remove Duplicate Items Listview C#
I would like to remove items that have the same title, as shown in the image, but would like to do after the items are listed in the listview. I couldn’t do anything because the "title" may be the…
listviewasked Fernando Neves 117 -
1
votes1
answer332
viewsQ: Using Navigate to upload more than one link to Webbrowser
How to do the Navigate go to the next link after the first one has loaded? I’ve tried a few things but failed. nomedobrowser.Navigate("http://reidocrime.com/");…
c#asked Fernando Neves 117 -
0
votes1
answer802
viewsQ: Simulate click on Webbrowser using C#
I wanted to know how I do to realize a click on an element of a website (at the end), I would like him to click on that element. href="javascript:;" class="spot drugdealer" title="Traficante de…
c#asked Fernando Neves 117 -
0
votes1
answer117
viewsQ: Transforming Checkboxlist Labels into strings
I have a checkboxlist with some items and their name are the directories so I can save the file. I wonder how I get the name of each label selected from checkboxlist and turn it into a string. I…
-
7
votes2
answers483
viewsQ: Like taking multiple groups in a Regex?
public string site = "http://www.tibia.com/community/?subtopic=worlds&world=Aurera"; private Regex nomedochar = new Regex("subtopic=characters&name=(?<player>.*?)\" >"); public…