Re: [perl-win32-gui-users] A need for a "native" HTML browser?

2004-12-16 Thread YorHel
Hi, as long as the module doesn't get a lot bigger in size, doesn't suck a lot more memory, and doesn't need any more CPU to load, then I don't see why not... if it does, I dont see why it shouldn't be a seperate module, since not everyone needs it in every application... I'm happy with the perfor

Re: [perl-win32-gui-users] A need for a "native" HTML browser?

2004-12-16 Thread YorHel
Hi, as long as the module doesn't get a lot bigger in size, doesn't suck a lot more memory, and doesn't need any more CPU to load, then I don't see why not... if it does, I dont see why it shouldn't be a seperate module, since not everyone needs it in every application... I'm happy with the perfo

Re: [perl-win32-gui-users] Bitmaps with buttons/labels

2004-08-17 Thread YorHel
Well, you're code works fine here, do you have the latest dev build from http://perso.club-internet.fr/rocherl/Win32-GUI-Dev/index.html? cheers, YorHel On Tue, 17 Aug 2004 23:47:25 -0600, Greg Osborne <[EMAIL PROTECTED]> wrote: > Hello :-) > > I'd like to apologize in

[perl-win32-gui-users] 2 Questions

2004-07-29 Thread YorHel
d( -name => "field1", -size => [ 100, 20 ], -pos => [ 10, 10 ], -parent => $groupbox, -prompt=> [ "test: ", 30 ], -tabstop => 1, ); $field2 = $win->AddTextfield( -name => "field2", -size => [ 100, 20 ], -pos => [ 10, 40 ], -parent => $groupbox, -prompt=> [ "test2: ", 30 ], -tabstop => 1, ); $win->Show(); Win32::GUI::Dialog(); When I comment the -parent options in $field1 and $field2, it works perfect, but I can't tab between them if I use the -parent option. Any solutions? Thanks, yorhel

[perl-win32-gui-users] Transparent bitmaps on labels?

2004-07-01 Thread YorHel
Hey, I'm trying to make a label with an (background-)image with transparent parts, but I can't (or don't know how to) use bitmap-masks on an label-image. Is there a way to do this? or is there any other way to put transparent images on a window?