First of all, I am a real newbie to programming in Visual Studio. That being said, I have created a small program that pops up an Internet Explorer window; I now want to replace the Internet Explorer icon in the top-left corner with the project's icon.
Currently, I am opening the window in C#, using the ShDocVw
object:
static void Main(string[] args)
{
SHDocVw.InternetExplorer IE = new SHDocVw.InternetExplorer
{
AddressBar = false,
MenuBar = false,
StatusBar = false,
ToolBar = 0,
Visible = true,
Height = 768
};
IE.Navigate2("http://someURL/page.aspx");
}
What I want to replace is the IE icon in the top-left corner (see included picture). The icon is in my project as a resource, and appears on the .exe.
Is there a way to change the browser icon here?