ChrisR has asked for the wisdom of the Perl Monks concerning the following question:
None of which worked. I have googled for almost an hour now and found nothing. I SuperSearched PerlMonks and found only one node Win32::GUI Chatterbox client but I couldn't find a solution to my problem there. I did notice the constant ES_READONLY used in the style option but I can't seem to find a style constant that will set it to editable.$mainform->tab->Page4->articletext->Enable(); $mainform->tab->Page4->articletext->ReadOnly(0); $mainform->tab->Page4->articletext->ReadOnly('FALSE'); $mainform->tab->Page4->articletext(-readonly=>0); $mainform->tab->Page4->articletext->configure(-readonly=>0); # I think + this one is for tk
Then use $mainform->tab->Page4->articletext(-style=>WS_VISIBLE|WS_VSCROLL); to set it to editable but that doesn't work either.$form->tab->Page4->AddRichEdit(-name=>'articletext',-style=>WS_VISIBLE +|WS_VSCROLL|ES_READONLY,-multiline=>1,-text=>"",-width=>745,-height=> +450,-left=>10,-top=>35);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Change readonly status of Win32::GUI::RichEdit
by halley (Prior) on Feb 11, 2005 at 16:58 UTC | |
by ChrisR (Hermit) on Feb 11, 2005 at 19:42 UTC | |
|
Re: Change readonly status of Win32::GUI::RichEdit
by Courage (Parson) on Feb 11, 2005 at 19:44 UTC | |
by ChrisR (Hermit) on Feb 11, 2005 at 20:38 UTC | |
by Courage (Parson) on Feb 11, 2005 at 22:21 UTC | |
by ChrisR (Hermit) on Feb 14, 2005 at 19:09 UTC | |
by Courage (Parson) on Feb 14, 2005 at 19:18 UTC |