Re: [perl-win32-gui-users] Perl-Win32-GUI-Users Digest, Vol 30, Issue 2

2008-12-11 Thread Perl Rob
Hi Kieron, To find out what has been selected, use the GetCurSel() method to get the index number of the currently selected item, then use the GetString() method to get the text of the item at that index: my $change = sub() { my $num = $y->GetCurSel; my $text = $y->GetString($num); pr

[perl-win32-gui-users] Filling Listbox with Dir and AddFile

2008-12-11 Thread Brian Somers
Hi, I'm a newbie trying to build my first GUI application. I've been looking through the website, Googling the web, and I haven't found an answer to my question. If this has been asked and answered previously, I apologize for missing it. Basically, I'm trying to implement a dual listbox int