private void displaySelectedClient(int currentClientID)
 {
     // Necessary because the binding won't find the record in the list automatically
     try
     {
         ClientProxy selectedClient = ProjectFunctions.GetClientInOptionsList(currentClientID);
         ClientCombo.SelectedIndex = ProjectFunctions.ClientOptionsList.IndexOf(selectedClient);
     }
     catch (Exception generalException) { MessageFunctions.Error("Error selecting current client", generalException); }
 }