How would I call my Web Browser Navigate method in a different form?
问题 I have two forms. My first form is my web browser, the second one is my History form. I would like the user to be able to open the history links in the web browser from my history form. My web browser form has a Navigate method which I use to open pages. I want to use this method in my History form. Here's my code. Web Browser Form Navigate Method private void navigateURL(string curURL ) { curURL = "http://" + curURL; // urlList.Add(curURL); HttpWebRequest request = (HttpWebRequest)WebRequest