I am wondering if there is a way to prevent specific characters or first few characters from displaying.
This is what I'm using at the moment. I'd like some way to keep it from displaying the first seven characters. Ones that are similar to this one, but are calling upon different things, I need a way to specify which words or first of a certain word, from displaying into the textbox.
Code:
For Each u9 As HtmlElement In WebBrowser3.Document.GetElementsByTagName("div")
If Not Object.ReferenceEquals(u9.GetAttribute("className"), Nothing) AndAlso u9.GetAttribute("className").Equals("duration_data") Then
TextBox12.Text = u9.InnerText
Exit For
End If
Next