void RefreshTextBox()
        {
            txtAnswers.Text = "";
            List <Comment> list = questionsDB.GetComments(question);

            for (int i = 0; i < list.Count; i++)
            {
                txtAnswers.Text = txtAnswers.Text + list[i].commentDate + "      " + profileDB.GetUser(list[i].userID).username + ": " + list[i].commentText + Environment.NewLine;
            }
        }