RE: [perl-win32-gui-users] iipc.pm

2002-06-19 Thread Anthony George
I have an archive of Win32::Iproc and Win32::Isync I can mail privately if you like...  Anthony George <[EMAIL PROTECTED]> Systems Engineer. Do your technical services need medical attention?  We can help.  EMSTS, LLC.  800-304-8269   231-720-1600   http://www.emsts.com  2516 Glade Muskegon,MI

RE: [perl-win32-gui-users] iipc.pm

2002-06-19 Thread Kamalesh Kumar
Hi Piske, Thanks allot for helping. But I did get yet where from I have to find iipc.pm. Thanks Kamalesh -Original Message- From: Piske, Harald [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 19, 2002 10:57 AM To: 'Kamalesh Kumar'; 'perl-win32-gui-users@lists.sourceforge.net' Subjec

RE: [perl-win32-gui-users] iipc.pm

2002-06-19 Thread Piske, Harald
How to install it seems to be said here http://safari.oreilly.com/main.asp?bookname=perlsysadm&snode=37 but about where to get it, the links seem outdated. http://www.generation.net/~aminer/Perl/ is empty (or not browsable) The guy's email address, listed on http://idnopheq.perlmonk.org/perl/pac

RE: [perl-win32-gui-users] Re: Perl-Win32-GUI-Users digest, Vol 1 #425 - 3 msgs

2002-06-19 Thread Piske, Harald
Yep, that works fine. ${something} is the same as $something, except that the {} seperates the variable name "something" from whatever follows. Both your solutions do the same. That's the beauty and curse of Perl, there are always 1001 ways to do it. > -Original Message- > From: Ceres [mai

[perl-win32-gui-users] Re: Perl-Win32-GUI-Users digest, Vol 1 #425 - 3 msgs

2002-06-19 Thread Ceres
## __ ## ## $subname = "Menu${key}_Click"; ## ## ^^ ## is this working ? scalar $key is a string and has a value but does ${key} have the same value then? isn't it interpated as a hash in stead of a scalar? i mostly use: $subname = "Menu$

[perl-win32-gui-users] Perl-Win32-GUI-Users - Event bugs in Win32-GUI-0.0.665

2002-06-19 Thread Ceres
Hello Folks, look in the file Win32-GUI-0.0.665.tar.gz for the text file BUGS and you see the anser for almost all problems : > - various :-) Here are several known Event problems i have: When making a menu in an empty window object the menu events are working perfectly.. b

[perl-win32-gui-users] iipc.pm

2002-06-19 Thread Kamalesh Kumar
Hi All, How are you ? Here ,Kamalesh Kumar from VCommerce. I am working as EDI/Perl consultant. Some body can suggest me where I can find iipc.pm and how do I install it. Thanks Kamalesh

RE: [perl-win32-gui-users] another menu question

2002-06-19 Thread Jonathan Southwick
Pete, Yes! Thank you! I didn't realize it would be that easy. Thanks, Jonathan At 6/19/2002 12:31 PM, you wrote: Try this... is this what you mean? -Pete ## #!perl -w use Win32::GUI; use strict; my $counter=1; my $Menu = new Win32::GUI::Menu( "&File" => "File",

RE: [perl-win32-gui-users] another menu question

2002-06-19 Thread Peter Eisengrein
Try this... is this what you mean? -Pete ## #!perl -w use Win32::GUI; use strict; my $counter=1; my $Menu = new Win32::GUI::Menu( "&File" => "File", " > &Counter $counter..." => "Counter", ); my $MW = new Win32::GUI::Window( -title => 'menu.pl', -left

RE: [perl-win32-gui-users] another menu question

2002-06-19 Thread Jonathan Southwick
I meant I want them to be able to access the NEW menu items without restarting the script. Jonathan At 6/19/2002 09:59 AM, you wrote: The results are already stored to the ini file so that when they run the script the next time they will have the menu items available to them. The ini file is

RE: [perl-win32-gui-users] another menu question

2002-06-19 Thread Jonathan Southwick
The results are already stored to the ini file so that when they run the script the next time they will have the menu items available to them. The ini file is read in and the 'Message' section of the menu is created on startup of the script. I want them to be able to access the menu items wit

RE: [perl-win32-gui-users] another menu question

2002-06-19 Thread Peter Eisengrein
> Anyway, the Message shortcuts are stored (sorted) in a > Message menu. When > they click on the message shortcut the text of the message is > placed in a > message box for them. That part all works. The user is able > to add their > own message shortcuts to the menu but they don't appea

[perl-win32-gui-users] another menu question

2002-06-19 Thread Jonathan Southwick
I am now able to create a menu based on text in a file thanks to Aldo's help. Now that the menu items have been added, is there a way to modify the menu? Here is what my program does. It allows a user running Windows 2000 or NT to send a message to every computer running Windows 2000 or NT i