C# Automating Word

  • Thread starter FootNotes For VBA Macro
  • Start date
F

FootNotes For VBA Macro

Hi All

I have very big word critical project is fully Ms word 2003 automatic in
..net 2008

I have Predefine Word Template of 3 Page's,

What user will do is, he will prepare a document e.g ( High Level Design )
for Engineering Project through my application user will do the attachment of
High Level Design document ( E.g HLD.doc Document name ), my application
should dynamically manipulate HLD.doc + additionally 3 page's of word
template should be inserted to the HLD.doc as the first 3 pages i need to do
through C# code



Please give ur suggestion and idea's



Thanks

Orcas
 
T

TobyG

Hi

use InsertFile method to insert external files.
document.Range(1,1) to get the beginning of the document

then insert like this

document.Range(1,1).InsertFile(filename);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top