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

2003-05-10 Thread Johan Lindstrom

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





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

2003-05-10 Thread Erick Bourgeois
On Sat, 10 May 2003 18:03:53 +0200, Johan Lindstrom <[EMAIL PROTECTED]> said:

> 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 did not write Win32::GUI::HyperLink. I had originally gotten
the code from Aldo (http://dada.perl.it/).
(I'm sorry for the lack of comments and information. I am in the
process of tidying things up on my site.)

The version I have posted at the above link (by Johan) was slightly
modified by me.

> 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.

I would be willing to convert it to a "proper" CPAN worthy module or would
it be more appropriate as part of Win32::GUI? Aldo?


regards,

Erick



[perl-win32-gui-users] Combobox help

2003-05-10 Thread Joel Ricketts
First, I want to send huge amounts of thanks to Mr. Calpini, for his work 
in developing this.  I've always believed I couldn't really do development 
for Win32, because the Win32 API was so cryptic.  Having an actual Perl 
front end -- a language with which I'm familiar from the Unix world -- is 
wonderful beyond belief.  Thank you!

I've run into a couple of problems, and until now have been able to find 
the answers on the 'net or on this list.  This one, though, has me 
stumped.  I've seen others with the same issue, tried the solutions 
recommended for them, and no dice.

Basically, I have a Combobox that I'm trying to display to the user.  I've 
populated it with, for the test, about 12 items.  It displays only the 
original items; the others are accessible through the keyboard, but not 
up-down scrolling list is available.  It just shows the first 10 or so.  

 $Step2Source = $NewDlg->AddCombobox (
-name=>"NewJobWizardStep2Source",
-tabstop=>1,
-left=>145,
-top=>168,
-width=>280,
-height=>100,
-addstyle=>WS_VISIBLE | 3 | WS_VSCROLL | WS_TABSTOP);

 if ($numjobs > 0) {
my $thisjob;
foreach $thisjob (sort keys %joblist) {
   $thisjob =~ s/.firebak$//i;
   $Step2Source->InsertItem ($thisjob);
   }
}

I've tried about every variation on this I can think of, with no dice.  
The Combobox appears, and can drop down, and everything's there.  But no 
listbox.  I've tried using the scroll=>1 parameter.  Tried just about 
every combination of the styles I can think of, including -addstyle and 
-style both.  No luck.  As far as I can tell, my code is basically 
identical to all the examples out there.  Ideas?

Joel