Re: How can I send output data to a new notebook or window?
- To: mathgroup at smc.vnet.net
 - Subject: [mg37788] Re: How can I send output data to a new notebook or window?
 - From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
 - Date: Wed, 13 Nov 2002 01:10:55 -0500 (EST)
 - Organization: Universitaet Leipzig
 - References: <aqqe8n$sgl$1@smc.vnet.net>
 - Reply-to: kuska at informatik.uni-leipzig.de
 - Sender: owner-wri-mathgroup at wolfram.com
 
Hi,
nb = NotebookCreate[];
Do[
  NotebookWrite[nb, Cell["i->" <> ToString[i], "Text"]],
  {i, 0, 3}]
???
Regards
  Jens
mopa wrote:
> 
> I want to display a program's result in a new window or notebook. I
> searched Mathematica's Help, but I can not thoroughly understand how
> to do it, and there are no examples in the helps of related functions
> to demonstrate how to use it.
> Where can I find any reference? Thanks!