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


}
相关推荐
pipip.1 小时前
UDP————套接字socket
linux·网络·c++·网络协议·udp
孞㐑¥6 小时前
Linux之Socket 编程 UDP
linux·服务器·c++·经验分享·笔记·网络协议·udp
水木兰亭9 小时前
数据结构之——树及树的存储
数据结构·c++·学习·算法
CoderCodingNo10 小时前
【GESP】C++四级考试大纲知识点梳理, (7) 排序算法基本概念
开发语言·c++·排序算法
秋风&萧瑟11 小时前
【C++】C++中的友元函数和友元类
c++
梁诚斌11 小时前
使用OpenSSL接口读取pem编码格式文件中的证书
开发语言·c++
2301_8035545216 小时前
c++中的绑定器
开发语言·c++·算法
海棠蚀omo16 小时前
C++笔记-位图和布隆过滤器
开发语言·c++·笔记
消失的旧时光-194316 小时前
c++ 的标准库 --- std::
c++·jni
GiraKoo17 小时前
【GiraKoo】C++11的新特性
c++·后端