ā2019-12-26
09:47 AM
- last edited on
ā2022-09-29
09:51 AM
by
Daniel Kassai
ā2020-01-06 05:05 PM
ā2020-02-07 04:27 PM
void OpenNotesObserver::IncludeFile (const DG::FileDialogIncludeFileEvent& /*ev*/, bool* enable)
{
*enable = false;
}
Best, Akos
ā2020-03-14 09:14 AM
Akos wrote:
Hi,
You have to implement a FileDialogObserver for that dialog, and return false from the IncludeFile callback:
void OpenNotesObserver::IncludeFile (const DG::FileDialogIncludeFileEvent& /*ev*/, bool* enable) { *enable = false; }
Best, Akos