- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI am interested in writing an application that will display output as an HTML page.
I know that the COM Component "Microsoft Web Browser" will handle what I want, but there are a few catches/questions.
1. What if the end user does not have Microsoft Internet Explorer, would the COM Component "Microsoft Web Browser" still work?
If so, this is great news. However, I seriously doubt this is true.
2. How can I display other browsers (ex. Netscape), instead of Internet Explorer. This would allow me to use the default browser of the user.
A good example of an application that just displays a web page is Windows Media Player, under Media Guide.
WinAmp also has a browser.
I think both of these applications only use Internet Explorer, but I am not sure.
Ideally, my application can just check for updates every few minutes, via http. I wish to "hide" the fact that I am simply displaying a web page, in much the same way that Windows Media Player makes it appear that you are not simply viewing a web page.
Help is greatly appreciated!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: martinvPosted on 2003-10-03 at 15:24:45ID: 9488412
hello,
yPage.htm" );
vstudio/pr oductinfo/ roadmap.as px and search for "Web browser control" on the page)
Windows Media Player is using IE COM object and will work only when MS IE is installed. WinAmp is using it's own HTML rendering engine.
You have three options:
- spawn user's default web browser in the external window. You can do it by using this code:
// C# Sample
using System;
using System.Diagnostics;
public class ShellExecuter
{
public static void Main()
{
Process.Start("c:\\temp\\m
}
}
- wait for .NET version 2.0, in which will be managed web browser control
(see http://msdn.microsoft.com/
- find some free and small HTML rendering engine (it probably exists, but I don't know about any)