Open document 1 when user clicks document 2

I have a view of training documents that users can see. If they double-click on one of the training documents, I want them to automatically open the related employee document. Not the training document.

Is this possible?

I’M HALFWAY THERE: I can get the employee document to open in the QueryOpen ,PostOpen or OnLoad events, but the training document still opens last. If I perform a FileCloseWindow in those events, it closes the employee document instead of the training document the user clicked on.

Any help would be greatly appreciated.

Thanks,

Quin

Subject: Re: Open document 1 when user clicks document 2

In the Queryopen after your code to open document 2 put: Continue = False
That should stop the processing of opening document 1. More details: IBM Documentation https://www.ibm.com/support/knowledgecenter/en/SSVRGU_9.0.1/basic/H_QUERYOPEN_EVENT_UIVIEW.html

See how that goes…