473,385 Members | 1,930 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

HTML Renderer

Anyone know of a good HTML Rendering control? I need a control that will
render and display HTML in a Windows form. It doesn't need to pull down
HTML pages from the Web - I'll feed it all the HTML it needs to display.
I've already spent way too much time trying to get the Microsoft WebBrowser
control to work, and I have too many other things to work on to waste any
more time on it. If you know of any third-party HTML Renderers out there,
please let me know.

Thanks,
Michael C., MCDBA
Nov 22 '05 #1
6 1961
Go to http://www.windowsforms.net/Default....dex=4&tabid=49

and look at the HTML Editor by Carl Nolan
Also look at http://www.itwriting.com/htmleditor/index.php

Sean McCormack
Open Source for .NET
http://www.adapdev.org
"Michael C" wrote:
Anyone know of a good HTML Rendering control? I need a control that will
render and display HTML in a Windows form. It doesn't need to pull down
HTML pages from the Web - I'll feed it all the HTML it needs to display.
I've already spent way too much time trying to get the Microsoft WebBrowser
control to work, and I have too many other things to work on to waste any
more time on it. If you know of any third-party HTML Renderers out there,
please let me know.

Thanks,
Michael C., MCDBA

Nov 22 '05 #2
Hmm. The WebBrowser control is still the most compatible thing around, if
you are after a proper rendering control for HTML. Granted, it is not the
easiest thing to use in .NET, but the information is all out there in these
newsgroups and the MSDN. I have tried most of the offerings of third-party
controls, and I still ended up with the WebBrowser control.

If there is a particular issue that is causing a problem then post here and
I'm sure someone will offer some help. There are also these newsgroups

microsoft.public.inetsdk.programming.webbrowser_ct l
microsoft.public.inetsdk.programming..mshtml_hosti ng

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Anyone know of a good HTML Rendering control? I need a control that will
render and display HTML in a Windows form. It doesn't need to pull down
HTML pages from the Web - I'll feed it all the HTML it needs to display.
I've already spent way too much time trying to get the Microsoft
WebBrowser
control to work, and I have too many other things to work on to waste any
more time on it. If you know of any third-party HTML Renderers out there,
please let me know.

Thanks,
Michael C., MCDBA

Nov 22 '05 #3
Charles,
I've been looking for resources on the webbrowser control for some time,
it turns out I was just looking in the wrong place. If you know of any more
resources please post them. Thanks!

"Charles Law" <bl***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hmm. The WebBrowser control is still the most compatible thing around, if
you are after a proper rendering control for HTML. Granted, it is not the
easiest thing to use in .NET, but the information is all out there in
these newsgroups and the MSDN. I have tried most of the offerings of
third-party controls, and I still ended up with the WebBrowser control.

If there is a particular issue that is causing a problem then post here
and I'm sure someone will offer some help. There are also these newsgroups

microsoft.public.inetsdk.programming.webbrowser_ct l
microsoft.public.inetsdk.programming..mshtml_hosti ng

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Anyone know of a good HTML Rendering control? I need a control that will
render and display HTML in a Windows form. It doesn't need to pull down
HTML pages from the Web - I'll feed it all the HTML it needs to display.
I've already spent way too much time trying to get the Microsoft
WebBrowser
control to work, and I have too many other things to work on to waste any
more time on it. If you know of any third-party HTML Renderers out
there,
please let me know.

Thanks,
Michael C., MCDBA


Nov 22 '05 #4
Turns out the WebBrowser control doesn't fire the WindowClosing event
properly and doesn't properly unload itself completely from memory... both
of which were the sources of my problem. Someone pointed out a workaround,
so I'm back to using the WebBrowser control again.

Thanks,
Michael C., MCDBA

"Charles Law" <bl***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hmm. The WebBrowser control is still the most compatible thing around, if
you are after a proper rendering control for HTML. Granted, it is not the
easiest thing to use in .NET, but the information is all out there in these newsgroups and the MSDN. I have tried most of the offerings of third-party
controls, and I still ended up with the WebBrowser control.

If there is a particular issue that is causing a problem then post here and I'm sure someone will offer some help. There are also these newsgroups

microsoft.public.inetsdk.programming.webbrowser_ct l
microsoft.public.inetsdk.programming..mshtml_hosti ng

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Anyone know of a good HTML Rendering control? I need a control that will render and display HTML in a Windows form. It doesn't need to pull down
HTML pages from the Web - I'll feed it all the HTML it needs to display.
I've already spent way too much time trying to get the Microsoft
WebBrowser
control to work, and I have too many other things to work on to waste any more time on it. If you know of any third-party HTML Renderers out there, please let me know.

Thanks,
Michael C., MCDBA


Nov 22 '05 #5
Hi Michael

You are certainly right about it not cleaning up properly, and it also has
problems with firing events.

When I close a form that is hosting the WebBrowser control, I explicitly
call Dispose on the WebBrowser object, and this gets over the clean-up
problem.

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Turns out the WebBrowser control doesn't fire the WindowClosing event
properly and doesn't properly unload itself completely from memory... both
of which were the sources of my problem. Someone pointed out a
workaround,
so I'm back to using the WebBrowser control again.

Thanks,
Michael C., MCDBA

"Charles Law" <bl***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hmm. The WebBrowser control is still the most compatible thing around, if
you are after a proper rendering control for HTML. Granted, it is not the
easiest thing to use in .NET, but the information is all out there in

these
newsgroups and the MSDN. I have tried most of the offerings of
third-party
controls, and I still ended up with the WebBrowser control.

If there is a particular issue that is causing a problem then post here

and
I'm sure someone will offer some help. There are also these newsgroups

microsoft.public.inetsdk.programming.webbrowser_ct l
microsoft.public.inetsdk.programming..mshtml_hosti ng

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> Anyone know of a good HTML Rendering control? I need a control that will > render and display HTML in a Windows form. It doesn't need to pull
> down
> HTML pages from the Web - I'll feed it all the HTML it needs to
> display.
> I've already spent way too much time trying to get the Microsoft
> WebBrowser
> control to work, and I have too many other things to work on to waste any > more time on it. If you know of any third-party HTML Renderers out there, > please let me know.
>
> Thanks,
> Michael C., MCDBA
>
>



Nov 22 '05 #6
Yeah, I tried Disposing the heck out of it; even forced a garbage
collection... but nothing worked until someone pointed out the work-around
to me. I had to basically create a new COM interface and explicitly capture
the WindowClosing event to avoid the error message. I think this variation
of the problem was due mostly to the fact that my managed code is running
several worker threads from the thread pool, especially since I didn't have
half the problems in a single threaded app.

Thanks,
Michael C., MCDBA
"Charles Law" <bl***@nowhere.com> wrote in message
news:OW**************@TK2MSFTNGP12.phx.gbl...
Hi Michael

You are certainly right about it not cleaning up properly, and it also has
problems with firing events.

When I close a form that is hosting the WebBrowser control, I explicitly
call Dispose on the WebBrowser object, and this gets over the clean-up
problem.

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Turns out the WebBrowser control doesn't fire the WindowClosing event
properly and doesn't properly unload itself completely from memory... both of which were the sources of my problem. Someone pointed out a
workaround,
so I'm back to using the WebBrowser control again.

Thanks,
Michael C., MCDBA

"Charles Law" <bl***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hmm. The WebBrowser control is still the most compatible thing around, if you are after a proper rendering control for HTML. Granted, it is not the easiest thing to use in .NET, but the information is all out there in

these
newsgroups and the MSDN. I have tried most of the offerings of
third-party
controls, and I still ended up with the WebBrowser control.

If there is a particular issue that is causing a problem then post here

and
I'm sure someone will offer some help. There are also these newsgroups

microsoft.public.inetsdk.programming.webbrowser_ct l
microsoft.public.inetsdk.programming..mshtml_hosti ng

HTH

Charles
"Michael C" <mi*******@optonline.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> Anyone know of a good HTML Rendering control? I need a control that

will
> render and display HTML in a Windows form. It doesn't need to pull
> down
> HTML pages from the Web - I'll feed it all the HTML it needs to
> display.
> I've already spent way too much time trying to get the Microsoft
> WebBrowser
> control to work, and I have too many other things to work on to waste

any
> more time on it. If you know of any third-party HTML Renderers out

there,
> please let me know.
>
> Thanks,
> Michael C., MCDBA
>
>



Nov 22 '05 #7

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

Similar topics

2
by: Michele Simionato | last post by:
I am looking for a textual html renderer (such as lynx) to be called from a Python program. The only needed functionality is the following: passing to it a string it should show the html file at...
0
by: Ian Bicking | last post by:
Does anyone know of a module that can render HTML to text? Just a subset of HTML, really; I'd like to compose emails using <p> tags and whatnot, fill in all the values in the email template, then...
8
by: Frank Ratzlow | last post by:
Hi folks, I have a list of entries where some entries contain the special character (quotes) within in the string. If I try to save this entry everything after the quotes is skipped. The reason...
28
by: Christopher Benson-Manica | last post by:
I have the following document, at http://ataru.gomen.org/file/test.html: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>...
27
by: Michael C | last post by:
Anyone know of a good HTML Rendering control? I need a control that will render and display HTML in a Windows form. It doesn't need to pull down HTML pages from the Web - I'll feed it all the...
4
by: ddd | last post by:
I am trying to build a diff tool that allows me to compare two HTML files. I am looking for resources on how to achive this. The main problem is that I do not want to simply highlight the line of...
6
by: robert_marquardt | last post by:
Is there am Open Source tool available for that? I may need such a tool to create HTML files for eBooks. eBook renderers may not understand CSS at all or at least have not access to the CSS file...
8
by: rn5a | last post by:
I have a HTML page named Index.html which is divided into 3 frames. The URL of 2 of the frames are HTML pages but the 3rd frame houses a ASP page. Now when I go to Windows Explorer, navigate to...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...

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.