RE: [perl-win32-gui-users] Win32::GUI::HyperLink ownership

2003-05-14 Thread Stuart Arnold
If you (or anyone that does take "ownership"), you may want to fix a bug
it has.
I've used it in my "generic" AboutBox.pm which takes an argument for the
program's website.
The "bug" is that once its made, you cannot change the URL.
Should have a property to change to its dynamic sub call.

just a not to all using it

-stuart

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Johan Lindstrom
Sent: Saturday, May 10, 2003 12:04 PM
To: perl-win32-gui-users@lists.sourceforge.net
Subject: [perl-win32-gui-users] Win32::GUI::HyperLink ownership


Does anyone know who wrote Win32::GUI::HyperLink?

The only mention I found of it on the Net is at:
http://www.jeb.ca/perl/win32_module.htm

Is it perhaps Erick Bourgeois himself that is the author?

I'm thinking of supporting Win32::GUI::HyperLink in The GUI Loft, but
I'm 
not sure how to handle the dependency since there is no bona fide module

(perl Makefile.PL, nmake etc), or a PPM.

The least bad alternative right now seems to be to include it in the 
Win32::GUI::AdHoc PPM that's bundled with The GUI Loft, but I'm afraid
of 
stepping on someone's toes/screw with the copyright (there is no licence

for the module).

I'm open to suggestions.


/J
 --  --- -- --  --  -- -  - -
Johan LindströmSourcerer @ Boss Casinos [EMAIL PROTECTED]

Latest bookmark: "Win32-GUI Perl module"
http://www.jeb.ca/perl/win32_module.htm
dmoz (1 of 7): .../Software/Operating_Systems/Graphic_Subsystems/ 19




---
Enterprise Linux Forum Conference & Expo, June 4-6, 2003, Santa Clara
The only event dedicated to issues related to Linux enterprise solutions
www.enterpriselinuxforum.com

___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users





RE: [perl-win32-gui-users] Win32::GUI::HyperLink ownership

2003-05-14 Thread Johan Lindstrom

Stuart wrote:

If you (or anyone that does take "ownership"), you may want to fix a bug
it has.


Also the AddHyperLink method it adds to Win32::GUI::Window class doesn't 
match the upper/lower-case spelling of the module. That should be fixed as 
well.



/J

 --  --- -- --  --  -- -  - -
Johan LindströmSourcerer @ Boss Casinos [EMAIL PROTECTED]

Latest bookmark: "Vim for Perl developers"
http://www.leonid.maks.net/writings/vim-for-perl-dev/
dmoz (1 of 5): /Computers/Software/Editors/Vi/ 320





RE: [perl-win32-gui-users] Perl and printing

2003-05-14 Thread Thomas, Timothy B
Peter, I wanted to let you know I really appreciated your post on this
issue. I have been looking for a good work-around to the printing problem,
and your first solution below is awesome, the only thing I had to add was
quotes around $file. Here's a sample script I wrote to test it out:
 
#!perl -w
 
use strict;
 
my $filename="$0.$$.html";
 
open(FH,">$filename");
print FH "testingThis is a test";
close(FH);
 
my $dll = "$ENV{'WINDIR'}/System32/mshtml.dll";
system("rundll32.exe $dll,PrintHTML \"$filename\"");
 
unlink $filename; #delete temp file;

 

-Original Message-
From: Peter Eisengrein [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 25, 2003 6:02 AM
To: 'Cruickshanks, Darin'; Perl-Win32-Gui-Users
Subject: RE: [perl-win32-gui-users] Perl and printing


There may be a better way, but here are two possible ways:
 
### THIS WILL BRING UP THE SAME PRINT WINDOW AS USED BY WEB BROWSER
 
  $dll = "$ENV{'WINDIR'}/System32/mshtml.dll";
  system("rundll32.exe $dll,PrintHTML $file");
 
 
-OR-
 
 
### THIS MAY OR MAY NOT GIVE THE BEST RESULTS
 
  system("copy $file ServerName\\PrinterName");
 
 
Good luck.
 

-Original Message-
From: Cruickshanks, Darin [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 24, 2003 11:12 AM
To: Perl-Win32-Gui-Users; [EMAIL PROTECTED]
Subject: [perl-win32-gui-users] Perl and printing


All,
 
 
I have a Perl application that uses Win32::GUI to provide a nice front end
for a database, what I would really like to do is provide a print feature
with the ability to print to a network printer through the gui.  Does anyone
know of any way to do this?
 
Cheers,

Darin



Darin Cruickshanks
Labs Manager, Computing Service
University of Essex
[EMAIL PROTECTED]  
01206 873585

 



Re: [perl-win32-gui-users] Re: Web Browser

2003-05-14 Thread Laurent ROCHER
Sorry, work on my french windows 98 ;o)

It's a problem only with Google.pl sample or any Win32::GUI::AxWindow
samples ?
I don't know if AxWindow is Unicode compliant.

Laurent.

- Original Message -
From: "Hirosi Taguti" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, May 14, 2003 4:21 AM
Subject: [perl-win32-gui-users] Re: Web Browser


> Thanks for information.
>
> In message <[EMAIL PROTECTED]>
>"Re: [perl-win32-gui-users] Re: Web Browser"
>""Laurent ROCHER" <[EMAIL PROTECTED]>" wrote:
>
> rocherl> It's possible to manipulate HTML document load in a webbrowser
control with
> rocherl> Win32::OLE.
> rocherl> See Google.zip for a simple sample : Automaticly Submit a
> rocherl> Win32::GUI::AxWindow search on Google.fr.
>
> But I cann't execute "Google.pl".
> Regards,
> Hirosi Taguti
> [EMAIL PROTECTED]
>