本文整理汇总了C++中CField::szGetConstraintDescription方法的典型用法代码示例。如果您正苦于以下问题:C++ CField::szGetConstraintDescription方法的具体用法?C++ CField::szGetConstraintDescription怎么用?C++ CField::szGetConstraintDescription使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CField
的用法示例。
在下文中一共展示了CField::szGetConstraintDescription方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UpdateMeasurementInfo
//.........这里部分代码省略.........
case CMeaCol::eCoolingTime:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString,CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPCoolingTime);
if (_fMPCoolingTime < 0.0f)
_fMPCoolingTime = 0.0f;
if (_fMPCoolingTime == 0.0f) // added
{
_fMPLogCoolingTime = DEFAULTBADVALUE;
}
else
_fMPLogCoolingTime = (float)log10(_fMPCoolingTime); // 11
UpdateDischargeDate();
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format(pf->format, _fMPCoolingTime);
break;
case CMeaCol::eNeutronA:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString, CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPNChanA);
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format(pf->format, _fMPNChanA);
break;
case CMeaCol::eNeutronB:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString, CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPNChanB);
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format(pf->format, _fMPNChanB);
break;
case CMeaCol::eNeutronC:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString, CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPNChanC);
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format(pf->format, _fMPNChanC);
break;
case CMeaCol::eGamma1:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString, CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPGDose1);
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format(pf->format, _fMPGDose1);
break;
case CMeaCol::eGamma2:
if (pf->bSatisfiesConstraints(pRawString))
{
sscanf(pRawString, CSelectMeasurement::GetColScheme(iColumnID)->inputFormat, &_fMPGDose2);
}
else
{
bMsgBox = true;
}
szDisplayableResult.Format( pf->format, _fMPGDose2);
break;
case CMeaCol::eDetector:
if (pf->bSatisfiesConstraints(pRawString))
{
l_szUtilCopy(_szMPDetectorID, pRawString, MAX_NAME_LENGTH);
}
else
{
bMsgBox = true;
}
szDisplayableResult = _szMPDetectorID;
break;
default:
break;
}
if (bMsgBox)
{
CFDMSApp* pApp = (CFDMSApp*)AfxGetApp();
pApp->MyMessageBox( pf->szGetConstraintDescription(pRawString), MB_OK | MB_ICONEXCLAMATION, (UINT)-1, pf->name);
}
else
MarkInfoAsEdited(iCID);
}