error C2039 & warning C4018(20120702)

【錯 error C2039:'SetWindowTextA' : is not a member of 'CString'
error C2039: 'SetWindowTextA' : is not a member of 'CString'
     d:\program files\microsoft visual studio\vc98\mfc\include\afx.h(368) : see declaration of 'CString'函數

 緣由是由於在綁定成員變量時設置的「m_OpenPath」的Category爲Value,而不是Control,CString的對象裏沒有SetWindowText的函數,在CStatic的對象裏有SetWindowText函數spa

/* 在對應的有文件中的定義 */
    CStatic m_SavaPath;  // Yes
    CString m_OpenPath;  // Error

【警告】warning C4018: '<' : signed/unsigned mismatch
    這裏就直接貼代碼了,出現這個警告的緣由是由於類型不匹配,GetLenth返回的是size_tcode

void CMy6_7WindowsDlg::OnOpen() 
{
	CFileDialog dlg( TRUE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,"All Files(*.TXT)|*.TXT||",AfxGetMainWnd() );
	CString strPath,strText = "";
	if( dlg.DoModal( ) == IDOK )
	{
		strPath = dlg.GetPathName( );
		m_OpenPath.SetWindowText( strPath );
		//m_OpenPath = strPath;  // 不能顯示
		//MessageBox( strPath ); // Test
		CFile file( strPath,CFile::modeRead );
		char read[10000];
		file.Read( read,10000 );
		// 6_7Windows通用對話框Dlg.cpp(189) : warning C4018: '<' : signed/unsigned mismatch
		// for( int i = 0;size_t(i) < file.GetLength( );i++ ) // 這樣就不會有警告了
/*
	這是個警告信息,GetLength函數返回的類型是size_t,實質是個無符號整型,能夠在申明i變量時申明爲:size_t i,就能夠了

	或是在條件裏判斷時把i強制轉型爲size_t,如:for( int i = 0;size_t(i) < file.GetLength( );i++ )便可
*/
		for( int i = 0;i < file.GetLength( );i++ )
		{
			strText += read[i];
		}
		file.Close( );
		m_FileText.SetWindowText( strText );
	}
}
相關文章
相關標籤/搜索