Creating and Using the Backup Database Dialog in User Application Logic

You can create and use the Backup Database dialog provided by the administration framework backup service from user application logic, as shown in the following menu click event method:

backupdatabase_click(menuItem: MenuItem input) updating;
vars
    form : JadeBackupDatabaseDialog;
begin
    create form;
    form.showModal;
end;

The following restrictions apply when using the supplied framework in your own applications.