Esempio n. 1
0
 private void Timer1_Tick(object sender, EventArgs e)
 {
     timer1.Stop();
     if (tuner1 != null)
     {
         DebugMsg msg = DebugMsg.DebugGetMsg();
         if (msg.Text.Length > 0)
         {
             richTextBox1.AppendText(msg.Text);
             richTextBox1.Select(richTextBox1.Text.Length, 0);
         }
     }
     timer1.Start();
 }