private void buttonSearch_Click(object sender, EventArgs e)
        {
            List <string> TempOwnerList    = new List <string>();
            List <string> TempRelationList = new List <string>();
            List <string> TempAnimalList   = new List <string>();

            comboBoxAnimalChoice.Items.Clear();
            comboBoxTimeChoice.Items.Clear();
            comboBoxTimeChoice.Text = "";
            if (textBoxOwnerInput.TextLength == 0)
            {
                MessageBox.Show("Please put in a phone number for the owner");
                return;
            }
            if (Controller.ControllerOwnerExist(textBoxOwnerInput.Text) == false)
            {
                MessageBox.Show("No owner exist under that phone number");
                return;
            }

            TempOwnerList = Controller.ControllerGetOwner(textBoxOwnerInput.Text);

            textBoxOwnerPhoneInfo.Text  = TempOwnerList[0];
            textBoxOwnerNameInfo.Text   = TempOwnerList[1] + " " + TempOwnerList[2];
            textBoxOwnerStreetInfo.Text = TempOwnerList[3];
            textBoxOwnerEmailInfo.Text  = TempOwnerList[4];
            textBoxOwnerCityInfo.Text   = TempOwnerList[5];
            textBoxOwnerZipInfo.Text    = TempOwnerList[6];

            TempRelationList = Controller.ControllerGetRelation(textBoxOwnerInput.Text);

            AnimalArray = new string[TempRelationList.Count / 2, 7];
            for (int i = 0; i < TempRelationList.Count / 2; i++)
            {
                TempAnimalList = Controller.ControllerGetAnimal(TempRelationList[(i * 2) + 1]);
                for (int j = 0; j < 7; j++)
                {
                    AnimalArray[i, j] = TempAnimalList[j];
                }
                comboBoxAnimalChoice.Items.Add(AnimalArray[i, 1]);
            }
            comboBoxAnimalChoice.SelectedIndex = 0;
            SearchCheck = true;

            if (buttonUpdate.Visible == true)
            {
                buttonUpdate.Visible = false;
                buttonCreate.Visible = true;
            }
            else
            {
                buttonCreate.Visible = true;
            }
        }