| View previous topic :: View next topic |
| Author |
Message |
SteveW Guest
|
Posted: Fri May 12, 2006 1:15 pm Post subject: View html component |
|
|
I need to view html code in a window.
IE have the html code in one window and on click of a button have the web
image shown in another window.
Cheers
SteveW |
|
| Back to top |
|
 |
SteveW Guest
|
Posted: Fri May 12, 2006 2:15 pm Post subject: Re: View html component |
|
|
Thanks for the info
I have the text of the html in a string variable "link"
What is the syntax to show this in webBrowser1
cheers
"Liz" <liz_wants_no_spam (AT) xcalibur (DOT) nospam.co.uk> wrote in message
news:xn0em54le44bbuc01i (AT) newsgroups (DOT) borland.com...
| Quote: | SteveW wrote:
I need to view html code in a window.
IE have the html code in one window and on click of a button have the
web image shown in another window.
Try synedit to show the syntax highlighted code, and twebbrowser to
view the code as formed by IE.
--
Liz the Brit
Delphi things I have released: http://www.xcalibur.co.uk/DelphiThings |
|
|
| Back to top |
|
 |
Liz Guest
|
Posted: Fri May 12, 2006 2:15 pm Post subject: Re: View html component |
|
|
SteveW wrote:
| Quote: | I need to view html code in a window.
IE have the html code in one window and on click of a button have the
web image shown in another window.
|
Try synedit to show the syntax highlighted code, and twebbrowser to
view the code as formed by IE.
--
Liz the Brit
Delphi things I have released: http://www.xcalibur.co.uk/DelphiThings |
|
| Back to top |
|
 |
Liz Guest
|
Posted: Fri May 12, 2006 3:15 pm Post subject: Re: View html component |
|
|
SteveW wrote:
| Quote: | Thanks for the info
I have the text of the html in a string variable "link"
What is the syntax to show this in webBrowser1
|
I use
webbrowser1.Navigate('about:blank');
Webbrowser1.OleObject.Document.write(s);
-- if you need to change the text in the browser, do
webbrwoser1.refresh;
Webbrowser1.OleObject.Document.write(s);
:>
--
Liz the Brit
Delphi things I have released: http://www.xcalibur.co.uk/DelphiThings |
|
| Back to top |
|
 |
|