Skip to content

Instantly share code, notes, and snippets.

@dck-jp
Created June 6, 2015 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dck-jp/d085717a8c9c59030fd4 to your computer and use it in GitHub Desktop.
Save dck-jp/d085717a8c9c59030fd4 to your computer and use it in GitHub Desktop.
SHDocVwSample11
public void ShowCurrentPageTitleAndURL()
{
var IE = new SHDocVw.InternetExplorer();
IE.Visible = true;
object URL = "http://finance.yahoo.co.jp/";
IE.Navigate2(ref URL);
IE.Wait();
Debug.WriteLine(IE.LocationName + " : " + IE.LocationURL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment