in reply to threads, file handles and wxPerl

Can you give me an entire working Wx Perl script I can run and see if it crashes?

Replies are listed 'Best First'.
Re^2: threads, file handles and wxPerl
by sdetweil (Sexton) on Feb 13, 2013 at 17:23 UTC
    looks like this was not a wxPerl issue.. but a bad pointer somewhere in the file handle code. all my fault.
Re^2: threads, file handles and wxPerl
by sdetweil (Sexton) on Feb 13, 2013 at 17:31 UTC
    altho unrelated, a wxPerl question Wx::GetTextFromUser() always has '20' in the dialog entry field
    how do you clear the entry field?

      That is probably the value of wxOK... (20), the third parameter in your code.

      Wx::GetTextFromUser( $message, $caption, $default_value, # $parent, # NULL # -1, # x = wxDefaultCoord # -1, # y = wxDefaultCoord # $centre, # true );
        fabulous.. thanks.. amazing what happens when you copy other peoples samples..