Beispiel #1
0
 public void ReadTopicalPassage(Topic topic)
 {
     m_Preaching = true;
     Say("A Word from the Lord concerning {0}:", TopicReader.GetTopicName(topic));
     m_Timer = new RecitalTimer(this, BibleReader.GetRandomTopicVerses(topic));
     m_Timer.Start();
     m_NextPreach = DateTime.Now + PreachDelay;
 }
Beispiel #2
0
        public void ReadTopicalPassage()
        {
            Topic readTopic = BibleTopic;

            m_Preaching = true;
            if (m_Random)
            {
                Array  values = Enum.GetValues(typeof(Topic));
                Random random = new Random();
                readTopic = (Topic)values.GetValue(random.Next(values.Length));
            }
            Say("How about this topic - {0}:", TopicReader.GetTopicName(readTopic));
            m_Timer = new RecitalTimer(this, BibleReader.GetRandomTopicVerses(readTopic));
            m_Timer.Start();
            m_NextPreach = DateTime.Now + PreachDelay;
        }