473,795 Members | 2,974 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Launching IE from a Winform

DOtNEt newbie. How do you launch an IE Browser from a winform?
Nov 22 '05 #1
6 3534
Process.Start(" ie.exe")
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
DOtNEt newbie. How do you launch an IE Browser from a winform?

Nov 22 '05 #2
Process.Start(" iexplore.exe");

--
=============== =============== =
try
{
Linux (any version)
}
catch
{
Format (mainHardDisk)
Install (Windows2000/XP/2003)
}
// You know you want to !!!

John Young
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
DOtNEt newbie. How do you launch an IE Browser from a winform?

Nov 22 '05 #3
Your sig rocks!
"John Young" <polomint77@ask hdg_hotmail.com > wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Process.Start(" iexplore.exe");

--
=============== =============== =
try
{
Linux (any version)
}
catch
{
Format (mainHardDisk)
Install (Windows2000/XP/2003)
}
// You know you want to !!!

John Young
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
DOtNEt newbie. How do you launch an IE Browser from a winform?


Nov 22 '05 #4
Thanks.

What if you wanted to use the users default browser rather than IE?

Brent

"William Ryan eMVP" <do********@com cast.nospam.net > wrote in message
news:uM******** ******@TK2MSFTN GP11.phx.gbl...
Process.Start(" ie.exe")
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
DOtNEt newbie. How do you launch an IE Browser from a winform?


Nov 22 '05 #5
System.Diagnost ics.Process.Sta rt("http://www.google.com" );

"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:Of******** ******@tk2msftn gp13.phx.gbl...
Thanks.

What if you wanted to use the users default browser rather than IE?

Brent

"William Ryan eMVP" <do********@com cast.nospam.net > wrote in message
news:uM******** ******@TK2MSFTN GP11.phx.gbl...
Process.Start(" ie.exe")
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
DOtNEt newbie. How do you launch an IE Browser from a winform?



Nov 22 '05 #6
:-)) Thanks. I was drunk when I thought of it... lol

--
=============== =============== =
try
{
Linux (any version)
}
catch
{
Format (mainHardDisk)
Install (Windows2000/XP/2003)
}
// You know you want to !!!

John Young
"William Ryan eMVP" <do********@com cast.nospam.net > wrote in message
news:uT******** ******@TK2MSFTN GP11.phx.gbl...
Your sig rocks!
"John Young" <polomint77@ask hdg_hotmail.com > wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Process.Start(" iexplore.exe");

--
=============== =============== =
try
{
Linux (any version)
}
catch
{
Format (mainHardDisk)
Install (Windows2000/XP/2003)
}
// You know you want to !!!

John Young
"Brent Stevenson" <st*******@admw orld.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
> DOtNEt newbie. How do you launch an IE Browser from a winform?
>
>



Nov 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
384
by: Brent Stevenson | last post by:
DOtNEt newbie. How do you launch an IE Browser from a winform?
6
5185
by: JerryP | last post by:
Hello, is there a way to launch the property dialogue for a directory from my c# app ? I would also like to launch the User Account Properties from Active Directory Users and Computers, and the properties window for an Object in Active Directory. Thanks for any hints.
2
1075
by: Zbigi | last post by:
It drives mu nuts... Say, I've dropped on my winform a sqlConnection data object. When setting up the connection string, the IDE displays Data Link wizzard which allows me to set it up in a neat visual way. But when I try to modify the sqlConnection I am not able to re-launch the wizzard. How can I do it? I searched the web and groups without results which make me think that
4
2241
by: Mike | last post by:
We have a two-pronged application, one is ASP.NET driven and the other is a bunch of WinForms packed into a VB.NET executable. Is there anyways to be able to call that executable from the ASPX page? We had implemented a custom URL handler in the past, but in our next release we cannot require any users to have administrative rights to their machine, so that means they cannot write the necessary registry information to register the URL...
4
1354
by: Ori :) | last post by:
Hi guys, I have a scenario where my application needs to run/start an application that is already installed on my machine. let's say - run an executable "ccc.exe". How do I call this executable from within my application and run it? Thanks!
7
2841
by: dhussong | last post by:
I have created a Setup and Deployment project in Visual Studio.NET 2003. After my installation has completed running I'd like to launch the EXE that I just installed. I've found how to launch the EXE in the Custom Actions area of the Setup and Deployment project. Unfortunately when the EXE is launched it causes the setup program to stay open until the EXE has been exited. Anyone have any ideas how to launch the EXE and get the setup...
1
2039
by: John A. Bailo | last post by:
Excuse the novice aspects of this question, but: What techniques are available to me for launching one c# application ( console .exe) from another? For example, I know there is the Process and ProcessInfo classes, but these seem designed for launching non-CLR applications. Should I access the .exe as a reference?
0
1247
by: Greg Finzer | last post by:
I am using Visual Studio 2005 and ClickOnce to deploy a WinForm application. ClickOnce, publishes the application fine. In a Virtual PC, it downloads the ..NET framework correctly, but whenever the framework is finished installing it simply shows the manifest for the application (an xml file) instead of installing it. How do I get around this? Thanks in advance. -- Thanks, Greg Finzer
0
3558
by: Hasim AH | last post by:
Hi .. Just getting interested to learn C# and needs help. I want to write C# application so that the program will execute and draw graphics when the user select the drawing menu from the main menu, SigDraw. Here is the codes:- using System; using System.Drawing; using System.Collections;
7
1921
by: =?Utf-8?B?bWljaGFlbCBzb3JlbnM=?= | last post by:
I have a WinForm application that, depending on user actions, may spin for a while doing extensive calculations, showing a progress bar in the meantime. I would like to be able to launch a second complete copy of the main form so the user may start a second lengthy calculation if desired. I have a menu item to "Launch New Workspace" but I am having difficulty implementing this. I detail my experiments below; any suggestions on the proper...
0
9672
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10439
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10215
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10165
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9043
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5437
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3727
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2920
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.