1. Rich Edit
Does anyone know what version of windows first included the dll for
RichEdit 2.0 ?
Thanks
Robert Szalay
2. Re: Rich Edit
>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
Why the hell is the rich edit not adding crlf's, isn't it supposed to do
this
4. Re: Rich Edit
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
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
----- 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.