public ScoreSheet(Archer archer, ScoreEntry se)
        {
            InitializeComponent();

            totHits   = archer.GetTotalHits();
            totTens   = archer.GetTotalTens();
            this.data = archer.GetTable();
            this.se   = se;

            Replace0WithM();

            FillGrid();
        }