Click here to Skip to main content
16,016,537 members

Comments by Samad blaj (Top 3 by date)

Samad blaj 27-Nov-14 4:31am View    
Deleted
foreach (System.Windows.Forms.HtmlElement html in webBrowser1 .Document.GetElementsByTagName("a"))
{
if (html.InnerText == "Random article")
{
html.InvokeMember("click");
}
}
Samad blaj 27-Nov-14 4:30am View    
Deleted
foreach (System.Windows.Forms.HtmlElement html in webBrowser1 .Document.GetElementsByTagName("a"))
{
if (html.InnerText == "مقالهٔ تصادفی")
{
html.InvokeMember("click");
}
}
Samad blaj 27-Nov-14 4:22am View    
noooo; click link in web browser c#.
help me?