L
Leon_Amirreza
Hi,
I have some Word (.doc) files containing Lists and I want to Merge them in
one file through automation (in C#), but the numbering dosent update
automatically, the only way i could find to solve this problem is this:
worddoctmp.Content.Copy();
worddocExam.Activate();
worddocAns.Application.Selection.PasteAndFormat(Word.WdRecoveryType.wdListCo
mbineWithExistingList);
any better approch that dosnt use clipboard?
Thank ya very much in advance.
I have some Word (.doc) files containing Lists and I want to Merge them in
one file through automation (in C#), but the numbering dosent update
automatically, the only way i could find to solve this problem is this:
worddoctmp.Content.Copy();
worddocExam.Activate();
worddocAns.Application.Selection.PasteAndFormat(Word.WdRecoveryType.wdListCo
mbineWithExistingList);
any better approch that dosnt use clipboard?
Thank ya very much in advance.