I'm looking to build a solution similar to this one: http://esqinc.com/section/products/4/idocid.html
What the system makes is insertion of a document file name into the document footer. How's that possible programmatically (preferably in .NET)?
|
|
|
I just happened to be working on code where I already do this in Excel from C#... This is partial, and will get you started...
There's more code there than you need for this specific task, but the relevant lines for having a header (or something that repeats at the top of each page) are:
Edit - Added Here's a link to MSDN documentation, for all your Office Interop needs. http://msdn.microsoft.com/en-us/library/bb209015(office.12).aspx |
||||
|
|
|
Hoping this gets you started. The following pseudo c# code can be used to add text to footer. Only you will have to do this in a macro to completely automate this and also identify the document name to be added. Finally call in to the macro during Document Save to add the footer text.
|
||||
|