コード例 #1
0
ファイル: VisForm3.cs プロジェクト: ShelbyBoss/Schule
 void OnDecodeTimer(object sender, EventArgs e)
 {
     if (ph.ParseAllPackets())
     {
         _doDisplay = true;
     }
 }
コード例 #2
0
 void OnDecodeTimer(object sender, EventArgs e)
 {
     try
     {
         if (m_protocolHandler.ParseAllPackets())
         {
             DisplayValues();
         }
     }
     catch (InvalidOperationException)
     {
         timerDisable();
         CloseCommunication();
         this.statusCheckbox.Enabled = false;
     }
 }