public static void ShowStatistics(UserProfile uProfile)
        {
            ProfileStatistics PSts = new ProfileStatistics();

            PSts.ActiveProfile = uProfile;
            PSts.ShowDialog();
        }
 private void sTATSToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (ActiveGame.IsGameStarted)
     {
         Mesaj.mbox.Göster(String.GetLangText("MENU_SHOW_STATS_ERROR"));
         return;
     }
     ProfileStatistics.ShowStatistics(GlobalVariants.ActiveProfile);
 }