Visual Basic Code , VB.NET Code, VB Code
  Home   :  Code   :  Forums   :  Submit   :  Mailing List   :  About   :  Contact


How can I open Internet Explorer from C#?


How can I open Internet Explorer from C#?

Author
Message
swastik
swastik
Forum God
Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)

Group: Forum Members
Posts: 5, Visits: 8
Hello Sir,

How can I open Internet Explorer from C#?

Can I open a particular web-page, such as yahoo.com from C# by clicking on a button?

Please send me the code urgently........

Please help me as soon as possible............

Thanking you...........

Swastik..........!!!!!!!!!!!!

Hi buddy,,,,,,

I am a Student of B.Sc. Computer Science............

Doing .Net from STG International Limited...........

My only ambission to develop myself.............

I want to develop softwares in .Net............

Please help me............

Edited
7/14/2008 by swastik
AllenSmith
AllenSmith
Forum God
Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)Forum God (3.1K reputation)

Group: Forum Members
Posts: 21, Visits: 335
Hello,

Try this line of Code:

System.Diagnostics.Process.Start("IEXPLORE.EXE", "www.yahoo.com");

This should work for you.

Regards,

Allen

 



Allen Smith



Software Engineer

ComponentOne LLC

www.componentone.com
swastik
swastik
Forum God
Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)Forum God (1.8K reputation)

Group: Forum Members
Posts: 5, Visits: 8
Yes Sir,

This is working........

Thanx for your soonest response.........

Hi buddy,,,,,,

I am a Student of B.Sc. Computer Science............

Doing .Net from STG International Limited...........

My only ambission to develop myself.............

I want to develop softwares in .Net............

Please help me............

Edited
7/15/2008 by swastik
vikas
vikas
Forum God
Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)Forum God (3.7K reputation)

Group: Forum Members
Posts: 14, Visits: 9
This code creates a process and then invokes the web page.







//Create a new process.



System.Diagnostics.Process proc = new System.Diagnostics.Process();



proc.EnableRaisingEvents = false;



//Here you can also specify a html page on local machine



//such as C:\Test\default.html



proc.StartInfo.FileName = "http://www.microsoft.com";



proc.Start();

Web design services       

SmileSmile

Website Designing Company
GO


Similar Topics


Reading This Topic


Login
Existing Account
Email Address:


Password:


Social Logins

Select a Forum....

















A1VBCode Forums


Search