Re: [perl-win32-gui-users] Tab and Escape with Multiline textfield

2006-07-17 Thread Robert May
Jamal Mazrui wrote: I just joined this list, but have searched the archive before posting. I know that keystroke processing issues with a multiline textfield have been discussed repeatedly. Evidently, the fix for the Enter key creating a new line is straight forward: add the ES_WANTRETURN style

Re: [perl-win32-gui-users] attaching OnClick events to dynamic MenuItems?

2006-07-17 Thread Robert May
Geoffrey Spear wrote: Hi. I've got a script that adds a MenuItem to my Window menu for each MDIChild I create. However, I can't figure out how to get the OnClick event for each window to act on the correct window. You don't need to do this yourself. Win32::GUI can be used to do it automatic

[perl-win32-gui-users] attaching OnClick events to dynamic MenuItems?

2006-07-17 Thread Geoffrey Spear
Hi. I've got a script that adds a MenuItem to my Window menu for each MDIChild I create. However, I can't figure out how to get the OnClick event for each window to act on the correct window. Here's a code snippet: my $sid = $tray->{SID}; # ID to be used in window title my $twin = trayWindow($

[perl-win32-gui-users] Tab and Escape with Multiline textfield

2006-07-17 Thread Jamal Mazrui
I just joined this list, but have searched the archive before posting. I know that keystroke processing issues with a multiline textfield have been discussed repeatedly. Evidently, the fix for the Enter key creating a new line is straight forward: add the ES_WANTRETURN style when creating the tex