/// <summary>
 ///
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private async void dgvImagesInDb_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     toolStripStatusLabel1.Text = $@"Current Status: Starting Images Within Database Update.";
     await Task.Run(() =>
     {
         if (DataGridViews.ValidateRowSelected(ref sender, e))
         {
             //Take the Column for the event and pass the column to the processor
             if (e.ColumnIndex > -1)
             {
                 DataGridViewColumn dgvc = ((DataGridView)sender).Columns[e.ColumnIndex];
                 //Facial_Recognition_Library.Controls.DataGridViews.dgvImagesInDb(ref sender, e, dgvc);
                 var result = DataGridViews.DgvImagesInDb(ref sender, e, dgvc);
                 if (result != null)
                 {
                     ProcessDataGridViewResult(result);
                 }
             }
         }
         else
         {
             System.Diagnostics.Debug.WriteLine($@"No Row Selected.");
         }
     });
 }