Specifications

RIGOL Chapter 4 Programming Demos
4-22 M300 Programming Guide
{
strMeasurement = "CURR:DC";
}
else
{
strMeasurement = "";
}
}
3) Click the rbtnACV radio button.
void CM300_Demo_VCDlg::OnBnClickedrbtnacv()
{
// TODO: Add your control notification handler code here
if (m_ctrlrbtnACV.GetCheck() == 1)
{
strMeasurement = "VOLT:AC";
}
else
{
strMeasurement = "";
}
}
4) Click the rbtnACI radio button.
void CM300_Demo_VCDlg::OnBnClickedrbtnaci()
{
// TODO: Add your control notification handler code here
if (m_ctrlrbtnACI.GetCheck() == 1)
{
strMeasurement = "CURR:AC";
}
else
{
strMeasurement = "";
}
}
5) Click the rbtn2WR radio button.
void CM300_Demo_VCDlg::OnBnClickedrbtn2wr()
{
// TODO: Add your control notification handler code here
if (m_ctrlrbtn2WR.GetCheck() == 1)
{
strMeasurement = "Resistance";
}
else
{
strMeasurement = "";
}
}
6) Click the rbtn4WR radio button.
void CM300_Demo_VCDlg::OnBnClickedrbtn4wr()
{
// TODO: Add your control notification handler code here
if (m_ctrlrbtn4WR.GetCheck() == 1)
{
strMeasurement = "FResistance";
}
else
{
strMeasurement = "";