private async void RecordsChecker()
        {
            while (true)
            {
                await Task.Delay(1);

                recordLabel.Text = $"Records in List: {resultlistBox.Items.Count}";
                totalLabel.Text  = $"Total records: {BufferedLines.Count()}";
            }
        }