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);
}


}
相关推荐
ChoSeitaku3 分钟前
12.重复内容去重|添加日志|部署服务到Linux上(C++)
linux·c++·windows
挣扎与觉醒中的技术人8 分钟前
网络安全入门持续学习与进阶路径(一)
网络·c++·学习·程序人生·安全·web安全
OTWOL1 小时前
【C++编程入门基础(一)】
c++·算法
宇寒风暖2 小时前
侯捷 C++ 课程学习笔记:内存管理与工具应用
c++·笔记·学习
Smile丶凉轩2 小时前
数据库面试知识点总结
数据库·c++·mysql
Want5952 小时前
C/C++跳动的爱心
c语言·开发语言·c++
laimaxgg2 小时前
Qt常用控件之数字显示控件QLCDNumber
开发语言·c++·qt·qt5·qt6.3
蓝天扶光2 小时前
c++贪心系列
开发语言·c++
Alidme3 小时前
cs106x-lecture14(Autumn 2017)-SPL实现
c++·学习·算法·codestepbystep·cs106x
小王努力学编程3 小时前
【算法与数据结构】单调队列
数据结构·c++·学习·算法·leetcode