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

2002-07-08 Thread Straub, Peter (Peter)
Hi all, does anyone know of a reliable way for two Win32::GUI scripts to communicate with each other? They run as separated processes. My idea was to simply write data to a file and send a notification of some kind to the other process (concurrent accesses not being an issue here). What came to

RE: [perl-win32-gui-users] Context Menus

2002-07-08 Thread Peter Eisengrein
First you set up your $menu. Then it is done something like this... I have a script that does this when a user Click's on a NotifyIcon, so within the sub ni_Click there is: my ( $nipx, $nipy ) = Win32::GUI::GetCursorPos (); $Window->TrackPopupMenu( $menu -> {'PopUpMenu'}, $nipx, $nipy ); HTH, Pe