Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text will not wrap

Status
Not open for further replies.

burker

MIS
May 8, 2002
6
US
Using Notes 4.6, while typing a message the text will not wrap @ page size (typing goes to the right). Tried setting the TEXT\ALIGN PARAGRAPH\LEFT (also no wrap). This is a setting a user clicked on and changed.
 
If you are using mail, you will need to make sure that the alignment setting in the Body field of the Memo form is correct. Wrapping often disappears when you have pasted something into the message and then continue keying in.
If you have a problem with wrapping and incoming, put this code in a button in the Memo form

@Do(
@Command([EditDocument]) ;
@Command([EditGotoField];"Body") ;
@Command([EditSelectAll]) ;
@Command([TextAlignLeft]);
@Command([EditTop]);
@Command([FileSave])
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top