To add to the previous answer, there is also a convention that SQL (etc.) keywords are capitalised. So your statement would become:
OleDbCommand command = new OleDbCommand("INSERT INTO configuration (Name, Title) VALUES (@AN, @NT)");
command.Parameters.AddWithValue("@AN", txtBxAdminName.Text);
command.Parameters.AddWithValue("@NT", txtBoxNetworkTitle.Text);