in reply to Re: Why is wxPerl slower than Win32GUI?
in thread Why is wxPerl slower than Win32GUI?

Thank you Anonymous Monk for the testing.

To deal with the buffer overflow in Win32::GUI, you might need to add something like this:

#Deals with buffer overflow $display_field->SetLimitText(10000000);

Replies are listed 'Best First'.
Re^3: Why is wxPerl slower than Win32GUI?
by Anonymous Monk on Jun 01, 2011 at 11:11 UTC
    With that change, the difference is zero to one second.
      Thanks for the information. I'm now suspecting the problem I'm experiencing might have something to do with character encoding. I'll keep my post updated. Thank you again.