1. wxEuphoria 0.16
- Posted by buzzo Jun 27, 2013
- 1290 views
What changes are needed to this line from the demo richedit2.exw for use in 0.16 to create a wxTextCtrl ? wxRichEditCtrl ?
RE = create( RichEdit, "", Main, 0,0,1,1,0),
Unable to find RichEdit anywhere in the 0.16 documentation
2. Re: wxEuphoria 0.16
- Posted by mattlewis (admin) Jun 27, 2013
- 1302 views
buzzo said...
What changes are needed to this line from the demo richedit2.exw for use in 0.16 to create a wxTextCtrl ? wxRichEditCtrl ?
RE = create( RichEdit, "", Main, 0,0,1,1,0),
Unable to find RichEdit anywhere in the 0.16 documentation
RichEdit is a Win32Lib control. You want wxRichTextCtrl.
Matt
3. Re: wxEuphoria 0.16
- Posted by buzzo Jun 27, 2013
- 1268 views
Then I take it that wxEuphoria is not compatable with win32lib.ew code.. would need a complete rewrite..
4. Re: wxEuphoria 0.16
- Posted by ghaberek (admin) Jun 27, 2013
- 1260 views
buzzo said...
Then I take it that wxEuphoria is not compatable with win32lib.ew code.. would need a complete rewrite..
100% correct. They are similar in concept and functionality but comprise an entirely different API.
-Greg