MFC工控项目实例三十四模拟量实时监控数字显示效果

点击监控按钮,对选中模拟量用数字显示效果实时显示数值。

SenSet.cpp中相关代码

cpp 复制代码
UINT m_nCounterID_1[6] = 
	{		
			IDC_STATIC0,
			IDC_STATIC1,
			IDC_STATIC2,
			IDC_STATIC3,
			IDC_STATIC4,
			IDC_STATIC5,
							
	};

UINT m_nCounterID_2[7] = 
	{		
			IDC_STATIC7,
			IDC_STATIC8,
			IDC_STATIC9,
			IDC_STATIC10,
			IDC_STATIC11,
			IDC_STATIC12,
			IDC_STATIC13,
							
	};


SenSet::SenSet(CWnd* pParent /*=NULL*/)
	: CDialog(SenSet::IDD, pParent)
{
m_font.CreateFont(-28,0,0,0,700,FALSE,FALSE,
					0,134,OUT_DEFAULT_PRECIS,
					CLIP_DEFAULT_PRECIS,DEFAULT_QUALITY,
					FF_SWISS,"楷体_GB2312");  
}


void SenSet::OnSelchangeList1() 
{
	KillTimer(1);
	 for(int j_1=0  ; j_1 <6 ; j_1++)    
		  {
	        SetDlgItemText(m_nCounterID_1[j_1],"-");
		  }
for(int j_2=0  ; j_2 <7; j_2++)    
		  {
		int   j_3=j_2+6;
		   SetDlgItemText(m_nCounterID_1[j_3],"-");
		  }

...


void SenSet::OnButton6() 
{
GetPrivateProfileString("AD输入",nSel_str,NULL,CHO_AD.GetBuffer(20),20,theApp.strFilePath); 
		SetTimer(1,500,NULL);	
}


void SenSet::OnTimer(UINT nIDEvent) 
{
	 CString str1,str2;
    CString str[30];
	 CString str_1[30];
	if( nIDEvent == 1 )
	{
		//16通道,2 = -5000 -- 5000 mV采集
	nSel =m_IDC_LIST1.GetCurSel();
    m_IDC_LIST1.GetText(nSel,nSel_str);
	CString str;
	str.Format("%d",nSel);	
	CString str6[16],str7[16],str8[16],str9[16];
	GetPrivateProfileString("A/D设置",nSel_str+"零点电压",NULL,str6[16].GetBuffer(20),20,theApp.strFilePath);
	GetPrivateProfileString("A/D设置",nSel_str+"零点数值",NULL,str7[16].GetBuffer(20),20,theApp.strFilePath);
	GetPrivateProfileString("A/D设置",nSel_str+"量程电压",NULL,str8[16].GetBuffer(20),20,theApp.strFilePath);
	GetPrivateProfileString("A/D设置",nSel_str+"量程数值",NULL,str9[16].GetBuffer(20),20,theApp.strFilePath);
//	float MON_AD=(float) atof(str9[16])/(float) atof(str8[16])*AI6325ASingle(theApp.nAddr_AD_1,2,atoi(CHO_AD))+ theApp.flo_AD_SET_ZERO_NUM[atoi(CHO_AD)];  
//	float MON_AD=(float) atof(str9[16])/(float) atof(str8[16])*AI6325ASingle(theApp.nAddr_AD_1,2,atoi(CHO_AD))+ (float) atof(str7[16]);
    float MON_AD;
	if (  str7[16]!="")
	{
	  MON_AD=(float) atof(str7[16]);  
	}
	else  MON_AD=0.0;
    
str1.Format("%6.2f",(float)(AI6325ASingle(theApp.nAddr_AD_1,2,atoi(CHO_AD))));
str2.Format("%7.2f",MON_AD);

SetDlgItemText(IDC_STATIC99,str2); 		
	}

	 int j_1 , j_2;
 	  for( j_1=0  ; j_1 <6 ; j_1++)    
		  {
	     	GetDlgItem(m_nCounterID_1[j_1])->SetFont(&m_font);
            str[j_1]=str1.Mid(j_1,1);
		    SetDlgItemText(m_nCounterID_1[j_1],str[j_1]);
		  }
for( j_2=0  ; j_2 <7; j_2++)    
		  {
		//	
          str_1[j_2]=str2.Mid(j_2,1);
		int   j_3=j_2+6;
		GetDlgItem(m_nCounterID_1[j_3])->SetFont(&m_font);
		SetDlgItemText(m_nCounterID_1[j_3],str_1[j_2]);
		  }
	CDialog::OnTimer(nIDEvent);
}


}
相关推荐
mit6.82434 分钟前
[vroom] docs | 输入与问题定义 | 任务与运输工具 | json
c++·自动驾驶
charlie1145141911 小时前
如何使用Qt创建一个浮在MainWindow上的滑动小Panel
开发语言·c++·qt·界面设计
cpp_learners4 小时前
QML与C++交互之创建自定义对象
c++·qt·qml
尘世闲鱼4 小时前
解数独(C++版本)
开发语言·c++·算法·解数独
kyle~4 小时前
C/C++字面量
java·c语言·c++
Mr.Winter`5 小时前
轨迹优化 | 基于激光雷达的欧氏距离场ESDF地图构建(附ROS C++仿真)
c++·人工智能·机器人·自动驾驶·ros·ros2·具身智能
csdn_aspnet5 小时前
C++ n条水平平行线与m条垂直平行线相交的平行四边形的数量
c++
闻缺陷则喜何志丹6 小时前
【BFS】 P10864 [HBCPC2024] Genshin Impact Startup Forbidden II|普及+
c++·算法·宽度优先·洛谷
qianbo_insist6 小时前
c++ python 共享内存
开发语言·c++·python