0

I use this event for webbrowser in c# win app.

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    //do something
}

I can use this event when the document is completed. I want to know is there any other event available for before that. I mean event for loading the page.

Lion
  • 18,729
  • 22
  • 80
  • 110
  • Why don't you voting the answers body? We spend time answering your question. – Rikki Nov 12 '12 at 00:20
  • @MohammadGoudarzi i tried voting you before you want to tell me. but it won't let me vote till i have under 15 reputation –  Nov 15 '12 at 10:10
  • Maybe next time body,, ;) Thank you. – Rikki Nov 15 '12 at 15:21
  • @MohammadGoudarzi vote up this question so that it gives me more reputation then I can vote up your answer –  Nov 15 '12 at 17:33
  • @MohammadGoudarzi I marked your answer as the correct answer for this question. Thanks –  Nov 15 '12 at 17:36
  • Thank you @peter purcell. You are the man! ;D You made my day! Cheers bro... – Rikki Nov 15 '12 at 17:50

2 Answers2

0

I think you should take a look at the owner's document here on msdn. I belive that "Navigating" is the event you are looking for. here is the document for that. Cheers

Rikki
  • 3,338
  • 1
  • 22
  • 34
0

Here you have msdn documentation.

I think that this event is Navigating.

kmatyaszek
  • 19,016
  • 9
  • 60
  • 65