error C2039 & warning C4018(20120702)
구성원 변수를 바인딩할 때 설정된 "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 );
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
VB에서 VC로 작성된 DLL을 호출하는 방법 공유이 두 가지가 있으면 VC를 사용하는 수조처럼 처리할 수 있습니다.도면을 내보내는 경우 WMF 또는 BMP 형식을 생성하여 VB를 호출할 수 있습니다.그러나 나는 VB가 창의 핸들 hWnd와 hDC, 그리고 창의 그...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.