Specifications

RIGOL Chapter 4 Programming Demos
4-46 M300 Programming Guide
chkOcomp.Enabled = false;
chkAZ.Enabled = true;
}
else if (cmboxTemp.Text.Substring(0, 2) == "TH")
{
chkOcomp.Enabled = false;
chkAZ.Enabled = true;
}
else if (cmboxTemp.Text.Substring(0, 2) == "RT" ||
cmboxTemp.Text.Substring(0, 2) == "FR")
{
chkOcomp.Enabled = true;
chkAZ.Enabled = false;
}
else
{ }
}
}
else
{
grpRange.Enabled = true;
grpACFilter.Enabled = true;
chkInputimp.Enabled = true;
grpGatetime.Enabled = true;
chkOcomp.Enabled = true;
chkAZ.Enabled = true;
}
}
10) The checked state of the Anysensor radio button has changed.
private void rbtnAnySensor_CheckedChanged(object sender, EventArgs e)
{
if (rbtnAnySensor.Checked == true)
{
grpRange.Enabled = false;
grpScale.Enabled = false;
grpGatetime.Enabled = false;
if (cmboxAnySensor.Text == "CURR")
{
grpInterTime.Enabled= true;
chkAZ.Enabled = true;
grpACFilter.Enabled = false;
chkOcomp.Enabled = false;
chkInputimp.Enabled = false;
}
else if (cmboxAnySensor.Text == "VOLT")
{
grpInterTime.Enabled = true;
chkAZ.Enabled = true;
chkInputimp.Enabled = true;
grpACFilter.Enabled = false;
chkOcomp.Enabled = false;
}
else if (cmboxAnySensor.Text == "FRES" || cmboxAnySensor.Text == "RES")
{
grpInterTime.Enabled = true;
chkAZ.Enabled = true;
chkOcomp.Enabled = true;