private bool CreateTable( ) { try { _table.CreateTable(); cmbFileGroup.Enabled = false; if (_afterTableCreated != null) { _afterTableCreated(_table, EventArgs.Empty); } return(true); } catch (Exception ex) { if (ex.GetType() != typeof(CancelledByUserException)) { Utils.ShowException(ex); } return(false); } }