Re: Undo/ Redo
- Posted by Al Getz <Xaxo at aol.com> Mar 09, 2005
- 517 views
Hi there Antonio, As far as i know, there is no 'Redo' in WinLib, and the 'Undo' technically isnt correct for use with the Rich Edit control anyway. To achieve 'redo' and 'undo' in a rich edit control you should use either of the following two calls: constant EM_REDO=#454 atom VOID VOID = sendMessage( id, EM_UNDO, 0, 0 ) VOID = sendMessage( id, EM_REDO, 0, 0 ) where 'id' is the id of the control returned when you create the control. Take care, Al And, good luck with your Euphoria programming! My bumper sticker: "I brake for LED's"