오후 5:12 2002-08-28
조경민 bro@shinbiro.com
간단한 LoadString
==================================================================
stdafx.cpp 에
CString _fnLoadString( UINT id, ... )
{
CString sID;
sID.LoadString(id);
va_list vl;
va_start( vl, id ); /* Initialize variable arguments. */
CString sMsg;
sMsg.FormatV( sID, vl );
va_end( vl ); /* Reset variable arguments. */
return sMsg;
}
stdafx.h 에
#define _S _fnLoadString
CString _fnLoadString( UINT id, ... );
-------------------------------------------------------
쓰는 법
IDS_TEST 하나둘셋넷
IDS_TEST2 %s의 직급은 %d
라면
void CTestLoadStringDlg::OnButton1()
{
// TODO: Add your control notification handler code here
AfxMessageBox( _S(IDS_TEST) );
AfxMessageBox( _S(IDS_TEST2,_T("경민"),100) );
}
조경민 bro@shinbiro.com
간단한 LoadString
==================================================================
stdafx.cpp 에
CString _fnLoadString( UINT id, ... )
{
CString sID;
sID.LoadString(id);
va_list vl;
va_start( vl, id ); /* Initialize variable arguments. */
CString sMsg;
sMsg.FormatV( sID, vl );
va_end( vl ); /* Reset variable arguments. */
return sMsg;
}
stdafx.h 에
#define _S _fnLoadString
CString _fnLoadString( UINT id, ... );
-------------------------------------------------------
쓰는 법
IDS_TEST 하나둘셋넷
IDS_TEST2 %s의 직급은 %d
라면
void CTestLoadStringDlg::OnButton1()
{
// TODO: Add your control notification handler code here
AfxMessageBox( _S(IDS_TEST) );
AfxMessageBox( _S(IDS_TEST2,_T("경민"),100) );
}
'KB > MFC/Win32' 카테고리의 다른 글
확장DLL을 ActiveX에서 가져다 쓰기 _messageMap에러날때 (0) | 2004.03.19 |
---|---|
MFC UNICODE 컴파일 하기 (0) | 2004.03.19 |
Task Scheduler SDK를 이용한 Idle Trigger 생성 예제 (0) | 2004.03.19 |
hWnd로 프로세스 메모리 쓰기/읽기 (0) | 2004.03.19 |
HTTP Tunneling (0) | 2004.03.19 |