Announcement

All important changes of my site and my blog will be announced here.

Computer security

This is my hobby. I spend my freetime for it. I am not professional in this area. But I like it very much.

Everything Else

Which doesn’t belong to other categories will land here. It maybe about my daily life, entertainment, music, game … or something like that

Programming

This is my job. That means everyday I must sit before the monitor. Tip something, be annoyed by bugs,… but I simply like it.

Tutorial

When I found something interesting, I would like to share it to everyone. That is the reason for this category comes.

Home » Archive by Tags

Articles tagged with: word

C# – Insert many tables successively into Word
Wednesday, 10 Mar, 2010 – 0:00 | No Comment

Today I read a thread on mycsharp.de asking about how man can insert many tables successively into Word. I think it’s very simple to do that with some Google search but when I begin to write a demo for myself I found out that it’s not easy as I think. There are some new concepts which I am still not clear, for example Range or a function with lot of arguments with ref-keyword. So I …

C# – Convert Word to HTML
Monday, 22 Feb, 2010 – 0:00 | 4 Comments

During my development I need to convert Word to HTML. I have installed Word on my local machine and I believe there are already many available ways on Internet to convert Word to HTML. In this small example I would like to introduce a method without adding any reference to any COM Component. This method uses namespace System.Reflection to create an instance of word document and invoke functionality “Export to HTML” for converting. The following …