private void InsertData(string fileName)
        {
            string msg = "";

            if (!VariableFacade.DataInsertInDb(_table, fileName, rbtDeleteAllRowsFirst.Checked, ref msg))
            {
                MessageBox.Show(msg);
            }
            else
            {
                btnActivateTable.Enabled = true;
            }
        }