Exemplo n.º 1
0
        private void buttonReadIso_Click(object sender, EventArgs e)
        {
            ReadIsochronous.TransferParams tParams = new ReadIsochronous.TransferParams();

            tParams.showAll       = checkBoxShowAllPackets.Checked;
            tParams.showErroneous = checkBoxShowErroneousPackets.Checked;
            tParams.showHeaders   = checkBoxSelectivelyShowHeaders.Checked;
            tParams.showCorrected = checkBoxShowCorrected.Checked;

            ReadIsochronous.StartIsochronous(richTextBox1, richTextBoxHeaderInfo, richTextBoxLostPackets, textBoxCount, tParams);
        }
Exemplo n.º 2
0
 private void buttonStopIso_Click(object sender, EventArgs e)
 {
     ReadIsochronous.Stop();
 }