in reply to Change readonly status of Win32::GUI::RichEdit
The WS_ stands for Window Style, a Win32 staple constant. You should be able to adjust that style at runtime, but you will need to tell the control that the style has changed. Typically, both tasks are done at once with a special method (message) you invoke on the control itself, but in a pinch, there's a generic "style changed" message.
Again, not familiar with the Win32:: perl binding module, but that's a meager start. The docs I've seen are not particularly helpful, either.
--
[ e d @ h a l l e y . c c ]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Change readonly status of Win32::GUI::RichEdit
by ChrisR (Hermit) on Feb 11, 2005 at 19:42 UTC |