Hosting a web browser component in a C# winform

  • Thread starter Thread starter E.T. Grey
  • Start date Start date
E

E.T. Grey

I would like to host a web browser component in a Winform. I have two
questions:

1). Is it possible to run an applet (if the URL pointed to has an applet
in it)?
2). Is it possible to change a property (for example) of the web
browser, so that it does not display the address (i.e. the URL that the
page was loaded from)?
 
E.T. Grey,

Yes, it will run an applet. The web brwoser control is the same as what
is seen in internet explorer, so it can run applets, assuming that a java
runtime is installed.

As for not showing the URL, the WebBrowser control does not show the
URL. That's a function of the host of the control, and if you want to show
it, you have to show it yourself.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top