in reply to Re: threads, file handles and wxPerl
in thread threads, file handles and wxPerl

altho unrelated, a wxPerl question Wx::GetTextFromUser() always has '20' in the dialog entry field
how do you clear the entry field?

Replies are listed 'Best First'.
Re^3: threads, file handles and wxPerl
by stefbv (Priest) on Feb 13, 2013 at 18:22 UTC

    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..