Re: [perl-win32-gui-users] RE: AxWindow: Creating HTML on the fly without loading a file!

2003-07-31 Thread Laurent Rocher
> Hello, > > > See attached sample. > > > > Laurent. > > I am sorry, but probably do you forget to send attachment( with sample)? > I send sample as attached zip file (?). See below. Laurent --- # perl -v # # Hosting WebBrowser # use Win32:

[perl-win32-gui-users] RE: AxWindow: Creating HTML on the fly without loading a file!

2003-07-31 Thread Pavel Prostine
Hello, > See attached sample. > > Laurent. I am sorry, but probably do you forget to send attachment( with sample)? my $HtmlWindow = new Win32::GUI::AxWindow ( -parent => $Win1, -name=> "HtmlWindow_1", -control => "{8856F961-340A

Re: [perl-win32-gui-users] AxWindow: Creating HTML on the fly without loading a file!

2003-07-31 Thread Laurent Rocher
Hello, You need to use a WebBrowser control for that (not a MSHTML). MSHTML display html but can not navigate in same window (lauch defaut navigator). You can directly write HTML in a webbrowser with GetOLE and Win32::OLE. $OLEControl = $Control->GetOLE();# Get Win32::Ole obj

[perl-win32-gui-users] AxWindow: Creating HTML on the fly without loading a file!

2003-07-31 Thread YANDEX
Hello I use AxWindow and have: my $HtmlWindow = new Win32::GUI::AxWindow ( $html = 'http://www.perl.com";>perl.com'; $HtmlWindow->AttachControl("MSHTML:$html"); This works fine, but when I click link, open new Opera window (I have default browser Opera), but when I writ