RE: [perl-win32-gui-users] Win32::GUI::Class() ??

2002-07-09 Thread Rogers, John
Howdy, Ive used Class to set Icons and cursers. EG. $I = new Win32::GUI::Icon("icon.ico"); $C=new Win32::GUI::Bitmap("no.cur", 2); $WinClass = new Win32::GUI::Class( -name => "johns-windows", -cursor => $C, -icon => $I,); Windows created with

RE: [perl-win32-gui-users] Win32::GUI::Class() ??

2002-07-09 Thread Piske, Harald
I use it to get some more mouse-related events. The most useful class for that is the RichEdit class. new Win32::GUI::Class ( -name => 'PoorEdit', -widget => 'RichEdit', -extends => 'RichEdit', ); $Main->AddRichEdit( -name => "Rich", -class => "PoorEdit",

[perl-win32-gui-users] Win32::GUI::Class() ??

2002-07-09 Thread Steven Swenson
Hi all, I was curious if anyone has any examples of how to use the Win32::GUI::Class function to create new class of windows? Would this allow the use of new events? or combination of existing classes? --Steve

Re: [perl-win32-gui-users] communication between GUI scripts

2002-07-09 Thread Kevin . ADM-Gibbs
Peter, Win32::Pipe allows you to use named pipes for interprocess communication. One process has to act as a server, any others as clients. You might want to have a look at the PerlIPC doc as well. Here's a very simple Win32::Pipe server: use Win32::Pipe; $p = new Win32::Pipe("MyPi