RE: [perl-win32-gui-users] Dc to the printer

2002-04-29 Thread Guillem Cunillera Wefers
...mm... I think .jpg file is a good end (with Win32::DIBitmap) and if some user of my application wants to print, then he has to opened with his default image program. I have tried, but I don't want to die for this Guillem -Mensaje original- De: [EMAIL PROTECTED] <[EMAIL PR

RE: [perl-win32-gui-users] Is possible to modify LWP module in order to avoid a frozen window ?

2002-04-29 Thread Guillem Cunillera Wefers
Perfect ! Thanks ! I have readed lwpcook while I was understanding http and https but I didn't pay attention in the last lines !! If someone want to use it, the content is not $res->content !!! is the concatenation(?) of all the $chunk's. This is not the best way of resolving the frozen window,

Re: [perl-win32-gui-users] TreeView & scrollbar

2002-04-29 Thread Andrea Maestrutti
"Piske, Harald" wrote: > > > $TV->FirstVisible($firstnode); # does not work > > $TV->Select($firstnode, 5); # does not work > > That's odd - I do $Main->Tree->Select($node) in my code and it sure works. with $win->Tree->Select($firstnode); In my application, the first node is selected, but the s

RE: [perl-win32-gui-users] TreeView & scrollbar

2002-04-29 Thread Piske, Harald
> $TV->FirstVisible($firstnode); # does not work > $TV->Select($firstnode, 5); # does not work That's odd - I do $Main->Tree->Select($node) in my code and it sure works. What are you trying to do with that second parameter, the 5? Could it be that you have warnings off and the select never gets ca

RE: [perl-win32-gui-users] Dc to the printer

2002-04-29 Thread markd
postscript?.maybe? "Guillem Cunillera To: <[EMAIL PROTECTED]>

[perl-win32-gui-users] TreeView & scrollbar

2002-04-29 Thread Andrea Maestrutti
Hello! My problem is about TreeView: after an insertion of many nodes (and consequently, the scrollbar is at the bottom of the Window) how can I put the scrollbar to the top? $firstnode=$TV->InsertItem( -text => "", -image => 2, -selectedimage => 2, ); $TV->Firs

Re: [perl-win32-gui-users] Is possible to modify LWP module in order to avoid a frozen window ?

2002-04-29 Thread Flame
Sorry if this was already said, but I haven't had time to pay much attention lately, and this post caught my interest. I originally wrote this for a program I never released. Some of what it does may or may not be helpful, just edit it to suit your needs. ok, heres the simple way to keep your di

[perl-win32-gui-users] Is possible to modify LWP module in order to avoid a frozen window ?

2002-04-29 Thread Guillem Cunillera Wefers
Firstly thanks to Kevin in my problem of downloading web pages with LWP while Win32::GUI::Dialog is running. Maybe there is a solution using fork(), but this will implies a lot of changes of my code, and I don't have time to do it Another possibility I think is to modify LWP module in order

RE: [perl-win32-gui-users] RichEdit in a pm module

2002-04-29 Thread Guillem Cunillera Wefers
Sean, I have tried different methods of use $Textbox var ,the same error appears, for example using Load: Can't call method "Load" on an undefined value at C:/Perl/lib/Mailtool/seleccio.pm line 48. I think Peter Köller is in the rigth way, because went I put out the different "use" in the modu

Re: [perl-win32-gui-users] RichEdit in a pm module

2002-04-29 Thread Sean Healy
In my program I want to put some helps windows. I thinked of using RichEdit in order to Include some rtf files, but when I used in a pm modules the var thats is used to created the RichEdit is don't recognised, for example: our $Textbox = new Win32::GUI::RichEdit($w_principal,-name => "Mailtoo

Re: [perl-win32-gui-users] RichEdit in a pm module

2002-04-29 Thread Peter Köller
Hello Guillem, I tried searching the web and activestate's mailling lists last year for this problem. Nothing found. Perhaps you might use a multiline textfield instead of richedit. But so you can't use the rtf features. Another idea could be Windows Help Files? Perhaps somebody has an approach o

RE: [perl-win32-gui-users] RichEdit in a pm module

2002-04-29 Thread Guillem Cunillera Wefers
Yes , in others pm modules I use Win32::OLE. Then, there is any other primitive(?) than "use" in Perl that resolves this problem ? As are you see...the problem could be Win32::OLE and no the pm module. Regards, Guillem -Mensaje original- De: Peter Köller <[EMAIL PROTECTED]> Para: Guill

[perl-win32-gui-users] RichEdit in a pm module

2002-04-29 Thread Guillem Cunillera Wefers
In my program I want to put some helps windows. I thinked of using RichEdit in order to Include some rtf files, but when I used in a pm modules the var thats is used to created the RichEdit is don't recognised, for example: our $Textbox = new Win32::GUI::RichEdit($w_principal,-name => "Mailtool

Re: [perl-win32-gui-users] Dc to the printer

2002-04-29 Thread Peter Köller
Hello! > I don't remember where I found this module, but I Included here if anyone > wants to try to do something with it. This not use gui interface. Perhaps you found it there: http://tmtowtdi.com/ :-) I did a search with google. Regards, Peter > -Ursprüngliche Nachricht- > Von: [EMA

RE: [perl-win32-gui-users] Dc to the printer

2002-04-29 Thread Guillem Cunillera Wefers
I don't remember where I found this module, but I Included here if anyone wants to try to do something with it. This not use gui interface. The code that Darek Adamkiewics put in this list works correctly, this gui is done in order to select the Printer. Well, I have an image, I know the printer,