Re: Re: Preventing NotebookWrite From Wrapping
- To: mathgroup at smc.vnet.net
- Subject: [mg20525] Re: [mg20470] Re: [mg20431] Preventing NotebookWrite From Wrapping
- From: BobHanlon at aol.com
- Date: Sat, 30 Oct 1999 00:13:48 -0400
- Sender: owner-wri-mathgroup at wolfram.com
The definition for line1 had a typo and should have read: line1 = "Min Residual = " <> ToString[minRes] <> ", " <> "Max Residual = " <> ToString[maxRes]; Sorry for the inconvenience. Bob Hanlon In a message dated 10/27/1999 6:00:02 AM, BobHanlon at aol.com writes: >Try this: > >minRes = .0522; maxRes = 1.2; > >line1 = "Min Residual = " <> ToString[minRes] <> ", " <> "Max Residual >= " <> ToString[maxres]; > >nb = NotebookCreate[ ]; > >NotebookWrite[nb, line1] >