URGENT : Display HTML Document into an Application Form
-
hi would you please answer my question How to display HTML Document within an application form ? thank you
-
hi would you please answer my question How to display HTML Document within an application form ? thank you
Easiest way, put a web browser control on your form. Otherwise, I guess you need to parse the HTML yourself.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
hi would you please answer my question How to display HTML Document within an application form ? thank you
-
Easiest way, put a web browser control on your form. Otherwise, I guess you need to parse the HTML yourself.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Christian Graus wrote:
I guess you need to parse the HTML yourself
I had to do that once. The code for it is not pretty, I can tell you. It wouldn't be so bad if html was always strict, but the transitional dtd's really cause problems.
Arthur Dent - "That would explain it. All my life I've had this strange feeling that there's something big and sinister going on in the world." Slartibartfast - "No. That's perfectly normal paranoia. Everybody in the universe gets that." Deja View - the feeling that you've seen this post before.
-
Easiest way, put a web browser control on your form. Otherwise, I guess you need to parse the HTML yourself.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Thank you so much for your reply ... Could be possible ... !! The HTML document is a HTML file What is the code to make the web browser control display the file ? Thanks again :)
-
Thank you so much for your reply ... Could be possible ... !! The HTML document is a HTML file What is the code to make the web browser control display the file ? Thanks again :)
If you're using .NET 2 and the Web Browser control, there's a property called Url. Just set that to the URL you want.
Arthur Dent - "That would explain it. All my life I've had this strange feeling that there's something big and sinister going on in the world." Slartibartfast - "No. That's perfectly normal paranoia. Everybody in the universe gets that." Deja View - the feeling that you've seen this post before.
-
If you're using .NET 2 and the Web Browser control, there's a property called Url. Just set that to the URL you want.
Arthur Dent - "That would explain it. All my life I've had this strange feeling that there's something big and sinister going on in the world." Slartibartfast - "No. That's perfectly normal paranoia. Everybody in the universe gets that." Deja View - the feeling that you've seen this post before.
Thank you so much, i will try it :)