I have a document template (.dot) which references another template (another .dot file). How does it get used? Does it get compiled beforehand and then the compiled version is stored somewhere in the temp folder? Or maybe the referenced template is compiled once before the VBA code in the referenced template is being used for the first time? I am asking because I have a strange problem: I ve corrected a bug in my referenced template, but the other template that references it behaves as if it uses the old (unmodified) template!
In C#, I know that I can overload the constructor for a class by specifying it in the body of the class: public class MyClass() { public MyClass(String s) { ... } } This overrides the default ...