private void setCompletedLists()
        {
            try
            {
                ProjectFunctions.SetActionStatusOptions();

                completedFilterList        = ProjectFunctions.ActionCompletedList(true, true);
                CompleteCombo.ItemsSource  = completedFilterList;
                CompleteCombo.SelectedItem = "No";

                completedOptions           = ProjectFunctions.ActionCompletedList(false, false);
                CompleteColumn.ItemsSource = completedOptions;
            }
            catch (Exception generalException) { MessageFunctions.Error("Error populating action status drop-down list", generalException); }
        }