Re: [perl-win32-gui-users] Installation program

2001-10-30 Thread Marcus
I would also recommend the NSIS installer from Nullsoft which is Open Source. It's the one used for Winamp. http://www.nullsoft.com/free/nsis/ Marcus

Re: [perl-win32-gui-users] Win32GUI + Tk...??? possible?

2001-10-30 Thread Marcus
On 30.10.01 at 07:00 Mark Wilkinson wrote: >I have never tried, but I am pondering the possibilities of having >Win32GUI and >PerlTK run simultaneously... I just tried that a few days ago after a similar post on the Perl/Tk mailing list. It seems to work. I placed the Tk code in a package without

Re: [perl-win32-gui-users] Help - Placing an ICON on the top leftof the window

2001-10-30 Thread Glenn Linderman
Why would you ask how NOT TO USE Win32::GUI on a Win32::GUI list? The purpose of the list, and the knowledge base of the participants is how TO USE Win32::GUI. Anything you can do using Win32::GUI can be done without using Win32::GUI. Just create your own equivalent to the functionality, using W

RE: [perl-win32-gui-users] Help - Placing an ICON on the top left of the window

2001-10-30 Thread Amin Aleali
Thank you for that. But is there a way not to use Win32::GUI I looked around and found the following from http://www.cpan.org/authors/id/C/CL/CLAIRD/ptkFAQ.html#A10.20 10.20. How do I replace the default window icon? The following works with .BMP and .GIF files. The aut

Re: [perl-win32-gui-users] Help - Placing an ICON on the top left of the window

2001-10-30 Thread Morbus Iff
>I need to replace the "TK" icon on the top left corner with one of my own. >If anyone has any suggestions or code clip to point me to the right >direction I would utterly appreciated. I've used Michaelangelo to create icons. To add the icon: # create the icon handler. $icon = new Win32::G

[perl-win32-gui-users] Help - Placing an ICON on the top left of the window

2001-10-30 Thread Amin Aleali
I am sure that this question has been asked before but sadly I cannot find it in the archives. I need to replace the "TK" icon on the top left corner with one of my own. If anyone has any suggestions or code clip to point me to the right direction I would utterly appreciated. -A

[perl-win32-gui-users] Alternative

2001-10-30 Thread Dave
Does anyone know of an alternative to Perl2Exe ? Thanks in advance, Dave McLaughlin

Re: [perl-win32-gui-users] Win32GUI + Tk...??? possible?

2001-10-30 Thread Johan Lindstrom
At 07:00 2001-10-30 -0600, Mark Wilkinson wrote: I have never tried, but I am pondering the possibilities of having Win32GUI and PerlTK run simultaneously. The problem, of course, is in the event looping - both need to have their event loops executed, and yet the call to execute the event loop

[perl-win32-gui-users] Installation program

2001-10-30 Thread Johan Lindstrom
I just found a _really_ good installation program that does everything right! (Well, at least that I know of...) http://www.jrsoftware.org/isinfo.htm It's script-based. It has a decent wizard (get that). It can be run from the command line. It's documented. It can set your own icons on the sh

[perl-win32-gui-users] Make a list box non-selectable

2001-10-30 Thread Stephen Patterson
Does anyone know how to make a Listbox so that items within it cannot be selected?

[perl-win32-gui-users] Win32GUI + Tk...??? possible?

2001-10-30 Thread Mark Wilkinson
Hi group, I have never tried, but I am pondering the possibilities of having Win32GUI and PerlTK run simultaneously. The problem, of course, is in the event looping - both need to have their event loops executed, and yet the call to execute the event loop is "blocking" as far as I can tell. Has