[perl-win32-gui-users] RichEdit->Change()
I've been playing around with RichEdit, and I can't get the Change event to work. Has anyone gotten this to work? _ Get your FREE download of MSN Explorer at http://explorer.msn.com
[perl-win32-gui-users] Win32::GUI::Label Click()/DblClick()
Do the Click() or DblClick() events work for the Win32::GUI::Label object yet? My tests seem to indicate no, but the events are listed in the documentation. Tim - Tim Thomas Unix Systems Administrator Lockheed Martin EIS · Denver Data Center 303-430-2281 mailto:[EMAIL PROTECTED] -
Re: [perl-win32-gui-users] Win32::GUI::Label Click()/DblClick()
Last time i tried it, I could get Click to work, but not DblClick. Jeremy Blonde [EMAIL PROTECTED] --- "Thomas, Timothy B" <[EMAIL PROTECTED]> wrote: > > Do the Click() or DblClick() events work for the > Win32::GUI::Label object yet? > My tests seem to indicate no, but the events are > listed in the documentation. > > Tim > > - > Tim Thomas > Unix Systems Administrator > Lockheed Martin EIS · Denver Data Center > 303-430-2281 > mailto:[EMAIL PROTECTED] > - > > > ___ > Perl-Win32-GUI-Users mailing list > Perl-Win32-GUI-Users@lists.sourceforge.net > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/
[perl-win32-gui-users] Net::FTP with AddStatusBar()
Is there a way to catch the STDOUT from using Net::FTP (ie. let $FTPInfo equal the information (string) from Net::FTP) and place it in $SB = $Window->AddStatusBar(-text => $FTPInfo); erick Never Stop Questioning www.jeb.ca
Re: [perl-win32-gui-users] Net::FTP with AddStatusBar()
Is there a way to catch the STDOUT from using Net::FTP (ie. let $FTPInfo equal the information (string) from Net::FTP) and place it in $SB = $Window->AddStatusBar(-text => $FTPInfo); $SB->Text($FTPInfo); should do the trick. _ Get your FREE download of MSN Explorer at http://explorer.msn.com
[perl-win32-gui-users] Net::FTP with AddStatusBar()
I guess my question was really how to catch it from Net::FTP. For example, catch the STDOUT so that I could have $FTPInfo = "331 User name okay, need password." > >Is there a way to catch the STDOUT from using Net::FTP (ie. let $FTPInfo > >equal the information (string) from Net::FTP) and place it in > > > >$SB = $Window->AddStatusBar(-text => $FTPInfo); > > $SB->Text($FTPInfo); > > should do the trick. erick