We have a small RTE in one of our applications, used only by our staff. It is using the Built-In TX Text Control.
It is set to WordWrap, and if I right-click in it when I'm running the compiled program and pick Properties from the popup menu, it shows that WordWrap is on. The control doesn't have a horizontal scrollbar, since it shouldn't be needed if word wrapping is working.
Until a few days ago, that always worked properly for me, but one of my colleagues has been reporting for a long time that it was not word wrapping for him - lines he typed, or previously saved lines being retrieved into the control, would just extend to the right and need to be scrolled to see all of them. So he would use Enter to put in hard breaks to make everything visible.
Then a few days ago this stopped working for me too: I'm seeing the same problem, where word wrapping is not happening despite appearing to be on. Turning it off and then on again does nothing.
The only thing I can think of that I did recently that might have changed something on my computer is changing the regional language for number display from English to French and then later back again. I'm not sure whether or not that coincided with this problem appearing.
Is this a known problem? Any solutions? (I was actually thinking of putting the RTE into our programs that we sell to users for an important use soon, but couldn't do so if some of them would have this problem!)
Only be aware of that once your window has been opened (from an event posted from the open event), you have to call the rte_1,event resize(0, ...rte_1.width, ...rte_1.height) once to make sure the pagewidth initially is correct, not only once the user has resized the window.
(just search on "miguel" and you'll find it).
You could also choose NOT to use the u_userobject, and use the u_rte object directly on your window, but I thought in most common situations, you'd have some kind of common user object on which you place the rte.
Good luck!