-2

Am creating a windows form ,call it test,ok this program should run firefox browser in it,how would i achieve this? have search the entire net but no solution,thanks!

Jimmy Obonyo Abor
  • 7,335
  • 10
  • 43
  • 71
  • 2
    `Process.Start(firefox.exe)` – Sayse Apr 03 '13 at 21:43
  • 1
    In terms of having the FireFox browser IN your form, there are many other posts on this - http://stackoverflow.com/questions/790542/replacing-net-webbrowser-control-with-a-better-browser-like-chrome http://stackoverflow.com/questions/1512284/alternative-to-webbrowser-control and http://stackoverflow.com/questions/12083146/embedding-firefox-into-a-net-control – Reddog Apr 04 '13 at 02:14

2 Answers2

3

No way to achieve firefox running as a part of your window. You can use Process.Start. Or you can utilize browser element which will be IE window.

rocky
  • 7,506
  • 3
  • 33
  • 48
2

I don't think you can run an application INSIDE of a form but, you can start an application by doing this:

Process.Start("<insert file name and path>")
DJ Burb
  • 2,346
  • 2
  • 29
  • 38