eric martin

eric martin

  • NA
  • 39
  • 2.8k

C# Click Gmail Refresh Button

Mar 28 2011 1:44 PM

I am writing a simple personal app that has a browser control and I want it to automatically "Refresh" gmail to check it more often than it does by default. There are monkey scripts that do this but I'm trying to add my personal style to it.

Anyhow, I've looked around and found everything but what I can do in csharp using the browser control.

I found this:

       // Link the ID from the web form to the Button var
       theButton
= webBrowser_Gmail.Document.GetElementById("Refresh");

       
// Now do the actual click.
       theButton
.InvokeMember("click");

But it comes back with null in 'theButton' so it doesn't invoke anything.

Anyone have any suggestions?

Thanks again!


Answers (3)