protected static void BindSchedules(RepeaterItemEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException(nameof(e));
            }
            Controls_mfbResourceSchedule sched = (Controls_mfbResourceSchedule)e.Item.FindControl("schedAircraft");
            Controls_SchedSummary        summ  = (Controls_SchedSummary)sched.SubNavContainer.Controls[0].FindControl("schedSummary");

            summ.Refresh();
        }
    protected void rptSchedules_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        if (e == null)
        {
            throw new ArgumentNullException("e");
        }
        Controls_mfbResourceSchedule sched = (Controls_mfbResourceSchedule)e.Item.FindControl("schedAircraft");
        Controls_SchedSummary        summ  = (Controls_SchedSummary)sched.SubNavContainer.Controls[0].FindControl("schedSummary");

        summ.Refresh();
    }