Starting with this BHO article in C#. Tried setting the styles but it doesn't set (I don't see any change in the HTML or noticeable changes).
Tried in the OnBeforeNavigate and in the OnDocumentComplete. Is there another place I should be making these type of changes?
foreach (IHTMLElementtempElement tempElement in document.getElementsByTagName("INPUT"))
{
IHTMLInputElementinput input=(IHTMLInputElement) tempElement;
if(input.type.ToLower().Contains("password"))
{
System.Windows.Forms.MessageBox.Show("OnBeforeNavigate:"+input.value);
tempElement.setAttribute("style", "(some styles here);",0);
}
}