M MaryM Oct 27, 2003 #1 Is there a way to copy or import "document variables" entered at File|Properties>Summary tab from one document to another?
Is there a way to copy or import "document variables" entered at File|Properties>Summary tab from one document to another?
J Jezebel Oct 27, 2003 #2 Doc1.BuiltinDocumentProperties("Title") = Doc2.BuiltinDocumentProperties("Title") etc CustomDocumentProperties are trickier. Simplest is to iterate the collection, *delete* the property from Doc2, ignoring the error if it doesn't exist, then add it.
Doc1.BuiltinDocumentProperties("Title") = Doc2.BuiltinDocumentProperties("Title") etc CustomDocumentProperties are trickier. Simplest is to iterate the collection, *delete* the property from Doc2, ignoring the error if it doesn't exist, then add it.