언어/C++ Builder(48)
-
MaskEdit에서 ip 입력
보기만 하고 테스트 해보지 않음.. __fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner) { // Initialize the mask edit boxes to contain the empty string. MaskEdit1->Text = ""; MaskEdit2->Text = ""; MaskEdit3->Text = ""; // Use the Courier font in the mask edit boxes. MaskEdit1->Font->Name = "Courier"; MaskEdit2->Font->Name = "Courier"; MaskEdit3->Font->Name = "Courier"; // Initialize the mask of each mas..
2013.02.19 -
SHDOCVW_OCX.OBJ Link Error
갑자기 SHDOCVW_OCX.OBJ 링크 에러가 날 경우가 있다..이는 TCppWebBrowser
2013.02.08 -
AnsiString to CString
제목 그대로 AnsiString을 CString 으로 변환하는 방법이다.AnsiString strSubkey = "blah blah~"; RegQueryValueEx(hKey, (const wchar_t*)strSubkey.c_str(), NULL, &dwType, (unsigned char*)lpValue, &dwByte);
2013.01.22 -
Statusbar에 ProgressBar 넣기 링크
Statusbar에 ProgressBar 넣기 링크http://blog.naver.com/PostView.nhn?blogId=sshuikr&logNo=100173692110
2013.01.02 -
C++, Object C 에서 Connection pool 사용하기
http://www.tildeslash.com/libzdb/#example
2012.12.27 -
XE2 에서 GoogleMaps 컴포넌트 사용할 때 링크오류
GoogleMaps 컴포넌트를 사용하게 되면 개발 중에는 별 문제 없지만 배포 시 [ILINK32 Error] Error: Unable to open file ‘UABOUTFRM.DFM’[ILINK32 Error] Error: Unable to open file ‘GMMAPRES.RES’와 같은 링크에러와 마주하게 될 것 이다. 구글링을 해서 http://www.cadetill.com/gmlib/위 사이트에서 해결책을 찾았다.1. Open project “GMLib_C2010.cbproj” 2. Remove GMBase and GMSize from the project( defined in GMLib_C2010.cbproj ). 3. Add db.pas into project. You can find i..
2012.12.26