No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Have you tried [CODE]style="vertical-align: bottom;"[/CODE] to the parent element of 16px and 12px text line.
If you want to download image which is accessed thru webbrowser. There is some easiest way to do it. If you view any image in webbrower control, it will cached locally your machine. You just need to find the correct path, make a clone and finally save it in your …
Are you referring to web browser (IE) control in Windows Form? Yes it is possible. [CODE]webBrowser.Navigate("http://www.google.com");[/CODE] In Web Browser DocumentCompleted event, [CODE]HtmlElement textElement = webBrowser.Document.All.GetElementsByName("q")[0]; textElement.SetAttribute("value", "your text to search"); HtmlElement btnElement = webBrowser.Document.All.GetElementsByName("btnG")[0]; btnElement.InvokeMember("click"); [/CODE]
The End.
expresscasket