Hello guys,
i want to display the text from a website in a TextBox. I use the webbrowser from Visual Basic Studio, so it should be possible. The Problem is, that i just want to display a specific part of text.
Here is the example from the website:
I just want to display the "10" from the 3rd span element. So i need <span style="color:green"><b>10</b></span> but i just want to display the number 10 in my textbox...
Thanks & Greetings,
MARCI1111
i want to display the text from a website in a TextBox. I use the webbrowser from Visual Basic Studio, so it should be possible. The Problem is, that i just want to display a specific part of text.
Here is the example from the website:
PHP Code:
<!doctype HTML>
</html>
<head> My Website </head>
<body>
<span style="color:blue">5</span>
<span style="color:blue">5</span>
<span style="color:green"><b>10</b></span>
</body>
</html>
Thanks & Greetings,
MARCI1111