Re: WXPerl Question - Styling textctrl

2013-01-22 Thread Brad Van Sickle
/WxEXPORTS Good luck, Regards Steve On Sun, Jan 20, 2013 at 8:53 AM, Brad Van Sickle bvs7...@gmail.com wrote: If i leave the single quotes off PERL complains that I cannot use barewords when strict is enabled (or something to that effect. I ended up figuring out that for some reason PERL

Re: WXPerl Question - Styling textctrl

2013-01-20 Thread Brad Van Sickle
. Each style is just a function eg wxID_ANY just says, sub wxID_ANY {return -1}; So it's not: ('wxTE_MULTILINE' | 'wxTE_READONLY' | 'wxTE_WORDWRAP' ), but, wxTE_MULTILINE | wxTE_READONLY | wxTE_WORDWRAP, That should fix it, Regards Steve On Fri, Jan 18, 2013 at 1:33 PM, Brad Van Sickle

WXPerl Question - Styling textctrl

2013-01-19 Thread Brad Van Sickle
Hello, I'm having some problems getting styles to take effect on a TextCtrl box. I'm using a TextCtrl to display the response to an HTTP request and it's getting written to the TextCtrl in one super long line. I'd like to wrap the text and use all of the vertical space in the window.