当前位置: 首页>>代码示例>>C++>>正文


C++ CField::szGetConstraintDescription方法代码示例

本文整理汇总了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);
}
开发者ID:hnordquist,项目名称:FDMS,代码行数:101,代码来源:VMeasurement.cpp


注:本文中的CField::szGetConstraintDescription方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。