PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: tom cone jr on January 28, 2006, 04:44:31 PM

Title: Wordwrap in multiline textbox ?
Post by: tom cone jr on January 28, 2006, 04:44:31 PM
How is this done using FF?

If one must resort to the API, could someone illustrate the technique?

If one must resort to the API, could this be added to the "Styles" availble for textboxes in vers 3 of FF?

-- tom
Title: Wordwrap in multiline textbox ?
Post by: TechSupport on January 28, 2006, 04:52:48 PM
Uncheck the ES_AUTOHSCROLL and enable the ES_AUTOVSCROLL. Also, make sure that you have ES_MULTILINE checked. If you want the ENTER key to allow the user to go to the next line then enable ES_WANTRETURN.
Title: Wordwrap in multiline textbox ?
Post by: tom cone jr on January 28, 2006, 06:02:04 PM
Thanks!

-- tom