I have tried function like htmldocment.setAttribute() and webbrowser.document.body.style="font-size:34px"
it's not always working, why?
for example
Dim a As HtmlElement
a = wb.Document.GetElementById("tableID")
a.SetAttribute("border", "3px")
worked, but not
Dim a As HtmlElement
a = wb.Document.GetElementById("tableID")
a.SetAttribute("style", "font-size:"24px")
it's not always working, why?
for example
Dim a As HtmlElement
a = wb.Document.GetElementById("tableID")
a.SetAttribute("border", "3px")
worked, but not
Dim a As HtmlElement
a = wb.Document.GetElementById("tableID")
a.SetAttribute("style", "font-size:"24px")