[perl-win32-gui-users] Using Thread::Queue

2006-01-04 Thread Igor Anufriyenko
Good Evening, Here is some undocumented feature on passing parameters to the subroutines that are fed into the ::Queue: # queues are created here. $command = "dir /b c:\\data\\files"; $commandQueue->enqueue("&shellsub( ' $command ' )"); sub shellsub { system ( shift ); } The important part

[perl-win32-gui-users] Re: BrowseForFolder -driveonly option

2006-01-04 Thread Robert May
Igor Anufriyenko wrote: -driveonly=>1 option allows directories and individual files to picked and returned from Win32::GUI::BrowseForFolder package calls. Is there a way to limit displayed nodes to drives only? It is possible to trim return value using built-in functions, however it would be b

[perl-win32-gui-users] Re: multiline Textfield and tab navigation

2006-01-04 Thread Robert May
"Octavian Rasnita" originally wrote I am trying to create a multiline textfield on a window that has the -dialogui option set but the big problem is that I cannot move the focus out of that window by pressing the tab key. I've tracked down the problem and have added a solution for the next rel