in reply to Re^2: WxPerl and drag and dropping files
in thread WxPerl and drag and dropping files
So, how did it not work?
Also, what are the contents of @_ in sub doit?
Also, what is this code supposed to do:
\&otherSub($file);
Maybe you just want to call othersub?
otherSub($file);
If you are passing $file as parameter already, there is no need to make it into a global variable. Just use my $file and pass the filehandle around as a parameter.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: WxPerl and drag and dropping files
by Anonymous Monk on Jun 13, 2014 at 07:17 UTC |