본문 바로가기
반응형

개발언어/C++37

ComboBox 의 Item과 List 구성하기 ComboBox 의 Item과 List 구성하기 연관글 보기 2010/05/13 - [개발언어/C++] - ComboBox의 GetCurSel의 ItemDate를 가져와서 SQL Querey 하기 ComboBox의 Item과 List를 DB를 통해서 구성합니다. 1 void CSearchModule::LoadVIPInfo() 2 { 3 // VIP ComboBox 초기화 4 m_comboVIP.ResetContent(); 5 m_comboVIP.AddString(_T("전체")); 6 m_comboVIP.SetItemDataPtr(0, new CString(_T("전체"))); 7 8 // SQL Query 작성 9 CString strQuery = _T(""); 10 strQuery.Format(_T(.. 2010. 5. 14.
ComboBox의 GetCurSel의 ItemDate를 가져와서 SQL Querey 하기 ComboBox의 GetCurSel의 ItemDate를 가져와서 SQL Querey 하기 연관된 글보기 2010/05/14 - [개발언어/C++] - ComboBox 의 Item과 List 구성하기 1 // ComboBox의 GetCurSel의 ItemDate를 가져와서 SQL Querey 하기 2 CString CSearchModule::GetJoinCode() 3 { 4 int nItem = m_comboPatientDiv2.GetCurSel(); 5 long lValue; 6 if(nItem > 0) 7 { 8 lValue = *(reinterpret_cast(m_comboPatientDiv2.GetItemDataPtr(nItem))); 9 CString strT = _T(""); 10 strT.F.. 2010. 5. 13.
WTL 7.0 / WTL 8.0 / WTL7.1 / WTL 7.5 / WTL8.0 다운로드 MS 사이트 WTL 7.0 다운로드 MS 사이트 About your download Windows Template Library (WTL) 7.0 If your download does not start after 30 seconds, click here: Start download Instructions Windows Template Library (WTL) is a library for developing Windows® applications and UI components. It extends ATL (Active Template Library) and provides a set of classes for controls, dialogs, frame windows, GDI objects, and more. T.. 2010. 5. 9.
[에러] unresolved external symbol __imp__PathAddBackslashA 해결하기 컴파일시 에러가 발행하였다. 에러는 LINK 링커 에러이다. 에러메시지 1 --------------------Configuration: ControlTest - Win32 Debug-------------------- 2 Linking... 3 ControlTest.obj : error LNK2001: unresolved external symbol __imp__PathAddBackslashA@4 4 ControlTest.obj : error LNK2001: unresolved external symbol __imp__PathRemoveFileSpecA@4 5 Debug/ControlTest.exe : fatal error LNK1120: 2 unresolved externals 6 Error exec.. 2010. 5. 7.
반응형