Strange caracters

Hi,

I’m using the aspose.Word Demo version 2.5.2.0.
I execute easy code to evaluate the powerfull of this component and I have a stranger result.

Here my code:

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Bold = true;
builder.Writeln(“123”);
builder.Bold = false;
builder.Writeln(“321”);

doc.Save(“c:\temp\WordTest.doc”);

Here the result:

Evaluation only, garbage text in the document is part of the evaluation watermark. Created with Aspose.Word. Copyright 2003-2005 Aspose Pty Ltd.
gt^hUo+?!123
321

I don’t understand why I Get this result. I mean why did I get “gt^hUo+?!” in my first line ???

Just because it says garbage text in the document is part of the evaluation watermark.

Oups…
Ok Thanks