1. Rich Edit
- Posted by Robert Szalay <robsz1 at hotpop.com> Jan 11, 2003
- 538 views
Does anyone know what version of windows first included the dll for RichEdit 2.0 ? Thanks Robert Szalay
2. Re: Rich Edit
- Posted by Elliott Sales de Andrade <quantum_analyst at hotmail.com> Jan 11, 2003
- 492 views
>From: Robert Szalay <robsz1 at hotpop.com> >Subject: Rich Edit > > >Does anyone know what version of windows first included the dll for >RichEdit 2.0 ? Try this page about Rich Edit Controls: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/richedit/richeditcontrols/aboutricheditcontrols.asp The URL will probably wrap. >Thanks > Robert Szalay > Euphoria Instant Messenger Have YOU Joined? http://groups.yahoo.com/group/euim/
3. Rich Edit
- Posted by jordah ferguson <jorfergie03 at yahoo.com> Feb 11, 2002
- 523 views
Why the hell is the rich edit not adding crlf's, isn't it supposed to do this
4. Re: Rich Edit
- Posted by Derek Parnell <ddparnell at bigpond.com> Feb 11, 2002
- 520 views
Can you clarify this a bit more for me? Are you saying that a RichEdit control is not inserting CRLF when you are typing into it? Or is it when you use setText() or setSelectedText() that the CRLF are not being inserted? Does the new text have CRLF embedded in it or are you expecting these routines to automatically add it for you? Maybe you can give us a tiny program that demonstrates the behaviour you are experiencing. ----- Original Message ----- From: "jordah ferguson" <jorfergie03 at yahoo.com> To: "EUforum" <EUforum at topica.com> Sent: Tuesday, February 12, 2002 2:01 AM Subject: Rich Edit > > Why the hell is the rich edit not adding crlf's, isn't it supposed to do > this > > > >
5. Rich Edit
- Posted by jordah ferguson <jorfergie03 at yahoo.com> Mar 01, 2002
- 511 views
Hi, I have to questions involving the rich edit control. 1) I want to setFont to a richedit control. simly using setFont isn't working, Please tell me what is going on or what i have to do to setFont to a RichEdit Control(without need for going through the font dialog)? 2)In case you want to select all text in a richedit control, it says in the documentaion that you can simply use setIndex(RE,{0,-1}). This is not working. I'm currently using the patched up version of win32lib ie 55.5? Some one please tell me how i can select all items in a RichEdit control. Hope to get feed Back. Jordah <jorfergie03 at yahoo.com>
6. Re: Rich Edit
- Posted by Derek Parnell <ddparnell at bigpond.com> Mar 29, 2002
- 513 views
----- Original Message ----- From: "jordah ferguson" <jorfergie03 at yahoo.com> To: "EUforum" <EUforum at topica.com> Subject: Rich Edit > > Hi, > I have to questions involving the rich edit control. > 1) I want to setFont to a richedit control. simly using setFont isn't > working, Please tell me what is going on or what i have to do to setFont > to a RichEdit Control(without need for going through the font dialog)? This has been fixed in the next release. You can then do: setFont(RE, Arial, 12, {"ALL", Normal"} ) that will set the font for all the text, or there is no text, any new text added to the control. > 2)In case you want to select all text in a richedit control, it says in > the documentaion that you can simply use setIndex(RE,{0,-1}). This is > not working. I'm currently using the patched up version of win32lib ie > 55.5? Some one please tell me how i can select all items in a RichEdit > control. This is almost correct. Try this instead: setIndex(RE, {1,0}) ----------- Derek.