private void mbMembersTBLPrintCard_ItemClick(object sender, ItemClickEventArgs e)
 {
     SplashScreenManager.ShowForm(typeof(Forms.Main.WaitWindowFrm));
     this.Invoke(new MethodInvoker(() =>
     {
         TBLPrintCardFrm FrmData = new TBLPrintCardFrm() { MdiParent = this, Icon = FXFW.SqlDB.MakeIcon(ribbonImageCollectionLarge.Images["TBLPrintCard.png"], 32, false) };
         FrmData.Show();
     }));
     SplashScreenManager.CloseForm();
 }