본문 바로가기
반응형

개발언어/C++37

vector 을 이용하여 combox 에 AddString 하기 vector 을 이용하여 combox 에 AddString 하기 1 std::vector STL_AcceptSort; // vector 자료형으로 선언 2 std::vector::const_iterator iter; // 반복자 생성 3 4 STL_AcceptSort.push_back("접수순서1"); // push_back로 맨뒤로 문자열 원소 추가함. 5 STL_AcceptSort.push_back("접수순서2"); 6 STL_AcceptSort.push_back("접수순서3"); 7 8 for(iter = STL_AcceptSort.begin(); iter != STL_AcceptSort.end(); ++iter) //탐색시작~ 9 { 10 m_cmbAcceptSort.AddString( (LPCS.. 2010. 5. 27.
c++ atoi 로 문자를 숫자형으로 변환 컨버트하기 Converts a given string to an integer. 문자를 숫자형으로 컨버트하여 준다. atoi Converts a given string to an integer. int WINAPI atoi( const TCHAR *sz); Parameters sz Source character string. Return Values Returns the string's integer value. Remarks This version of atoi supports only decimal digits, and does not allow leading white space or signs. It supports both Unicode and ANSI strings. Other versions can v.. 2010. 5. 27.
_T( ) 매크로 펌 : http://binyjini.tistory.com/entry/T-매크로-정리 보통 프로그래밍을 할 때 _T("") 매크로를 사용하면서도 그냥 컴파일 에러가 나면 한번 써보고 에러 안나면 오케이 하고선 그냥 넘어가는 경우가 있을지도 모른다는 생각에 간단히 정리합니다. 우리가 보통 유니코드 문자열을 처리할 때 L"this is a literal string" 과 같이 하는데요, _T 매크로를 사용하게 되면 프로젝트 세팅에 유니코드가 정의되어 있으면 유니코드 문자열로 컴파일 하고 그렇지 않으면 ANSI문자열(MBCS 포함)로 컴파일 됩니다. 아래는 간단한 예 입니다. pWnd->SetWindowText( "Hello" ); 이 코드 대신에 다음 코드가 사용됩니다. pWnd->SetWindowText( .. 2010. 5. 26.
GetWindowText 함수의 용도 GetWindowText 함수 사용의 예) 1 const nBuffSize = 512; // 버퍼의 사이즈를 정한다. 2 char szBuff[nBuffSize], buf2[nBuffSize]; // 버퍼공간을 선언한다. 3 m_wndResiNo1Edit.GetWindowText(szBuff, nBuffSize); //해당컨트롤 변수의 메소드로 가지고 있는 문자열을 받는다. 4 m_wndResiNo2Edit.GetWindowText(buf2, nBuffSize); //컨트롤변수로 해당 버퍼로 문자열을 가져온다. 영어로 된거 읽어라. MSDN 보다 좋은거는 없다. 영어공부도 하고 얼마나 좋냐~ CWnd::GetWindowText This method copies the CWnd caption title i.. 2010. 5. 26.
반응형