I am new with Aspose.Word

Dear Sir,

I am new with Aspose.Word. Can you please help me how to getting start with Aspose.Word and I shoud become familier with your product. If it satisfies to me then I will tell to my manager to purchase your product. Send me the small sample applications…

Thanks,

Kanmani.P

First of all you should check our online samples on

https://demos.aspose.com/

Then take a quick look on our online Wikipaedia to get acquainted with Aspose.Word basic concepts and howto:

https://docs.aspose.com/words/

And, finally, get some hands-on experience. Download our evaluation package which contains dll, demo code, and a full-featured help in chm format:

https://downloads.aspose.com/words

Dear Sir,

Thanks for the kind reply. The samples from the evalution version given is i feel some what seems tuff. So can you please send me a small and little samples with basics.

Thanks,

Kanmani.

It is a nice idea of having some smaller and easier set of samples for beginners. Unfortunately, we don’t have any right now. I think we can start doing them one by one, and you can take part in the process. Put forward several simple tasks and I will try to illustrate them with small compact code snippets.

For example, this code opens word document from the application startup directory and saves it with another name.

string filename = Application.StartupPath + "\\test.doc";
Document doc = new Document(filename);
doc.Save(System.IO.Path.GetFileNameWithoutExtension(filename) + "\_modified.doc");

Dear Sir,

Thanks for the reply. When I am going to write some text to the document, it writes a given text with some extra charecters like

(PbU}]/, ^Z$7K}~, …). Why it happen like this.

Thanks,

Kanmani.

The evaluation watermarks and garbage text appear in evaluation version only.

See https://docs.aspose.com/words/net/licensing/

When you purchase the license, the garbage text will be gone.

Hi,

Is your product support Macros?

Macros are preserved in the document if its opened and saved with Aspose.Word.You cannot modify them or run them programmatically from Aspose.Word code.