Thanks for your response. It is indeed the Vault Plugin that is causing this dialog to pop up.
I'm catching the event in a C# .NET plugin as below:
private Inventor.Application InventorApplication { get; set; }
private FileUIEvents FileUiEvents { get; set; }
public void Activate(Inventor.ApplicationAddInSite addInSiteObject, bool firstTime)
{
// Initialize AddIn members.
InventorApplication = addInSiteObject.Application;
FileUiEvents = InventorApplication.FileUIEvents;
FileUiEvents.OnFileSaveAsDialog += FileUiEventsOnOnFileSaveAsDialog;
}
private void FileUiEventsOnOnFileSaveAsDialog(ref string[] filetypes, bool savecopyas, int parenthwnd, out string filename, NameValueMap context, out HandlingCodeEnum handlingcode)
{
// NORMALLY I WOULD OPEN A CUSTOM WINDOW HERE
throw new NotImplementedException();
}
If I logout of Vault, the code works and the event is triggered. If I'm logged in I get the Vault dialog.
Would you know how to turn this off or skip this? Thanks!