3
Answers

Browser Loading

Kiko De leon

Kiko De leon

15y
3.8k
1
     Hi, I created simple application that opens the default browser in a computer. I want to know when the browser is finish
    loading the website using C#.  Any help would be very much appreciated. Thank you. This is the code.
           
            System.Diagnostics.Process process = new System.Diagnostics.Process();
            process.StartInfo.FileName = "www.google.com.ph";
            process.Start();
Answers (3)