This method displays the Open Answer File dialog box.
This method works only with a visible assembly.
void OpenAnswerFileDlg ( )
The following Visual C# example displays the "Open Answer File" dialog box:
public class ExampleCode { static void Main() { HotDocs.Application app = new HotDocs.Application(); HotDocs._Assembly3 asm = app.ActiveAssembly as HotDocs._Assembly3; asm.OpenAnswerFileDlg(); } }