error C2039 & warning C4018(20120702)

[오류] error C2039:'SetWindowsTexta': is not a member of'CString'error C2039:'SetWindowsTexta': 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가 Control 대신 Value이기 때문에 CString 객체에는 SetWindowText 함수가 없고, CStatic 객체에는 SetWindowText 함수가 있습니다.
/*   */
    CStatic m_SavaPath;  // Yes
    CString m_OpenPath;  // Error

[경고] warning C4018:'<>':signed/unsigned mismatch 여기에 코드를 바로 붙입니다. 이 경고가 나오는 이유는 유형이 일치하지 않기 때문입니다. GetLenth가 되돌아오는 것은size_t
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 );
	}
}

좋은 웹페이지 즐겨찾기