diff --git a/Internet Explorer.csproj b/Internet Explorer.csproj new file mode 100644 index 0000000..b2786a5 --- /dev/null +++ b/Internet Explorer.csproj @@ -0,0 +1,75 @@ + + + + + Debug + AnyCPU + {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA} + WinExe + iexplore + iexplore + v4.8 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + iexplore.ico + + + + + + + + + + + + + + + + + + + + + + + {EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B} + 1 + 1 + 0 + tlbimp + False + True + + + + + + + + + + \ No newline at end of file diff --git a/Internet Explorer.sln b/Internet Explorer.sln new file mode 100644 index 0000000..62b235d --- /dev/null +++ b/Internet Explorer.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35707.178 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Internet Explorer", "Internet Explorer.csproj", "{75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..799b7cc --- /dev/null +++ b/Program.cs @@ -0,0 +1,20 @@ +namespace InternetExplorer +{ + class Program + { + static void Main(string[] args) + { + SHDocVw.InternetExplorer internetExplorer = new SHDocVw.InternetExplorer(); + object url; + url = "https://google.com"; + + if (args.Length > 0) + { + url = args[0]; + } + + internetExplorer.Visible = true; + internetExplorer.Navigate2(ref url); + } + } +} \ No newline at end of file diff --git a/iexplore.ico b/iexplore.ico new file mode 100644 index 0000000..d4c1baa Binary files /dev/null and b/iexplore.ico differ