I've created a form in a global template (in the Word Startup folder). The template has the following 'modules'
I want to call the form from another template using a FilePrint routine. I've tried:
also
and
I get a "Run-Time Error 424 - Object required error"
What is the correct method to display the form?
I've made sure that the GlobalPrinterControl is being loaded as a Template/Add-In. Do I need to define it as 'Global' in any way?
Thanks
David
Code:
GlobalPrinterControl (ie the template name)
Forms
PrintCopySelectForm
I want to call the form from another template using a FilePrint routine. I've tried:
Code:
Sub FilePrint()
PrintCopySelectForm.Show
End Sub
also
Code:
Sub FilePrint()
GlobalPrinterControl.PrintCopySelectForm.Show
End Sub
and
Code:
Sub FilePrint()
GlobalPrinterControl.Forms.PrintCopySelectForm.Show
End Sub
I get a "Run-Time Error 424 - Object required error"
What is the correct method to display the form?
I've made sure that the GlobalPrinterControl is being loaded as a Template/Add-In. Do I need to define it as 'Global' in any way?
Thanks
David