Fortunately I have control over the version and initial setup of IE, so I'm ok 
on that count.

For this project, on Windows, I just need a very small window, preferably 
without a title bar, always on top, at least by default, that displays some 
regularly updated output. 

Having not used Perl to create UI elements before (and primarily on UNIX, 
besides), if I was to create a simple popup using a non-IE method, would you 
recommend I look first at some Perl interface to Windows dialogs, or Perl/Tk 
(is that mentionable in this group? ;^)), or what? If you have time, what are 
the pros and cons of the various methods? Any example code would also be 
greatly appreciated.

Thanks,
Garyl


> From Scott Campbell:
>
> Just be aware that techniques like these being discussed will fail on 
> machines where IE has been lobotomized (all of its disablable features 
> disabled) and other browsers are in use instead.  Your target audience 
> may not include such machines, but they exist.
> 
> If you want to write a user interface, you are better off writing it in 
> your own code.
> 
> One nice side effect of IE-lobotomization that I have experienced in the 
> past was that the "free" Netzero ads were done in a manner similar to 
> what is described here, and were also disabled, post-lobotomy :)  Now 
> that I use cable, I don't use "free" Netzero any more...
> 
> 
> On approximately 3/2/2005 3:21 PM, came the following characters from 
> the keyboard of Scott Campbell:
> > This should change the title:
> > 
> > $ie->{Document}{Title}="This is my title";
> > 
> > Scott Campbell
> > Senior Software Developer
> > Somix Technologies
> > http://www.somix.com
> > 
> > 
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of
> > [EMAIL PROTECTED]
> > Sent: Wednesday, March 02, 2005 4:52 PM
> > To: perl-win32-users@listserv.ActiveState.com
> > Subject: Re: Bitmap Display
> > 
> > 
> > This is slick.  Is there by any chance a way to remove the title bar
> > completely, or to change it? I can't find anything like that documented at
> > microsoft.com.
> > 
> > Garyl Erickson
> > 
> > 
> > In Perl-Win32-Users Digest, Vol 13, Issue 21:
> > 
> > 
> >>Drive IE via OLE
> >>
> >>use strict;
> >>use Win32;
> >>use Win32::OLE;
> >>
> >>my $ie = Win32::OLE->new('InternetExplorer.Application');
> >>
> >>$ie->Navigate("about:blank");
> >>
> >>$ie->{Toolbar} = 0;
> >>$ie->{StatusBar} = 0;
> >>$ie->{Width} = 800;
> >>$ie->{Height} = 400;
> >>$ie->{Left} = 0;
> >>$ie->{Top} = 0;
> >>
> >>while( $ie->{Busy} ) {
> >> Win32::Sleep(200);
> >>}
> >>
> >>$ie->{Visible} = 1;
> >>$ie->Document->Body->{InnerHTML} = '<h1>Please Wait...</h1><img 
> >>src="file://c:\gifs\peasant.jpg">';
> >>
> >># Rem put your code here. For testing, we 'll just sleep for a while 
> >>sleep(10);
> >>
> >>$ie->Quit;
> >>exit 0;
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to