private bool answerShown;                            //Tells us whether the answer is being shown


        public UsingFlashCards(ListOfCards c, string fileName)
        {
            InitializeComponent();

            //Setting the name of the form
            this.Text = "Flash Card: " + fileName;

            //Putting the Card into the listOfCards
            listOfCards = c;

            //Setting variable to there default
            answerShown         = false;                               //This is becuase the answer is first hidden
            answerHiddenMessage = "Click the button below to reveal!"; //This is the message that will be displayed when the answer is hidden

            //Loading first question when the form loads
            loadQuestion(listOfCards.getNextCard());
        }
 //An event handler that executes when the "Next" button is pressed
 private void btnNextQuestion_Click(object sender, EventArgs e)
 {
     loadQuestion(listOfCards.getNextCard());
 }