Ace128 has asked for the wisdom of the Perl Monks concerning the following question:
Now, in a sub I do:use threads::shared; my $richEdit : shared;
However, at this point of creating the variable I get the error:sub something { $richEdit = new Win32::GUI::RichEdit ( $infoWindow, -width => 400, -height => 200, -name => "RichEdit", -text => $text, -tabstop => 1, #-disabled=> 1, -autovscroll => 1, -addstyle => WS_CHILD | WS_VISIBLE + | WS_VSCROLL | ES_LEFT | ES_MULTILINE | ES_AUTOVSCROLL #| ES_READONLY | ES_WANTRETURN -addexstyle => WS_EX_CLIENTEDGE ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Sharing Win32::GUI::RichEdit...
by BrowserUk (Patriarch) on Jul 06, 2005 at 06:26 UTC | |
by Ace128 (Hermit) on Jul 06, 2005 at 15:50 UTC | |
by jplindstrom (Monsignor) on Jul 06, 2005 at 18:54 UTC | |
by Ace128 (Hermit) on Jul 07, 2005 at 23:58 UTC | |
|
Re: Sharing Win32::GUI::RichEdit...
by ikegami (Patriarch) on Jul 06, 2005 at 04:27 UTC | |
|
Re: Sharing Win32::GUI::RichEdit...
by duff (Parson) on Jul 06, 2005 at 04:04 UTC | |
by ikegami (Patriarch) on Jul 06, 2005 at 04:45 UTC | |
by jplindstrom (Monsignor) on Jul 06, 2005 at 11:01 UTC |