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
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",
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
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
4 matches
Mail list logo