본문 바로가기
728x90
반응형

전체보기158

MFC DLL 배포 방법 참고링크 [Bottom] [Top] Visual C++ 배포 - http://msdn2.microsoft.com/ko-kr/library/zebw5zk9(VS.80).aspx XCopy를 사용하여 배포 - http://msdn2.microsoft.com/ko-kr/library/ms235291(VS.80).aspx Redistributing Visual C++ RunTime Library - http://www.serious-code.net/moin.cgi/RedistributingVisualCppRunTimeLibrary RunTime Library 배포 [Bottom] [Top] Release 버젼 배포 - %PROGDIR%\Microsoft Visual Studio 8\SDK\v2.0\Bootstr.. 2020. 11. 2.
MFC DLL 확인 MFC 재배포 DLL 간단한 MFC용 ODBC을 배포하려고 하는데 필요한 DLL을 확인해보았습니다. 프로젝트 형식은 [Win32]-[Win32 콘솔 응용 프로그램]이고 템플릿 마법사(응용 프로그램 설정)에서 추가 옵션에 '미리 컴파일된 헤더'에 체크 및 공용 헤더 파일 추가 대상에 'MFC' 에 체크하였습니다. 미리 컴파일된 헤더(PCH) 헤더 파일인 stdafx.h에 TODO 부분에 #include // MFC ODBC 를 추가하고 main함수가 있는 cpp 파일에 CDatabase db; BOOL res = db.OpenEx(TEXT("~~~~)); // ~~~~부분에는 ODBC 연결 문자열이 들어갔습니다. if(res) { db.ExecuteSQL(TEXT("Insert into ABBA.dbo.u.. 2020. 11. 2.
MFC 문자열 Format 1. char 형변환 atoi() : char(문자나 문자열) -> int (부호있는 2바이트 정수) atol() : char -> long (부호있는 4바이트 정수) atof() : char - > double(4바이트 실수) itoa() : int -> char 등등... (ex) itoa(바꿀숫자, char형으로 바꿔서 넣을변수, 10진수); itoa(int, char[], 10); 2. int CString , double CString // CString -> int convert CString strNum = _T("5"); int nNum = _ttoi(strNum); // int -> CString convert int nNum = 5; CString strNum; strNum.Format.. 2020. 11. 2.
MFC 문자열 Format 1. char 형변환 atoi() : char(문자나 문자열) -> int (부호있는 2바이트 정수) atol() : char -> long (부호있는 4바이트 정수) atof() : char - > double(4바이트 실수) itoa() : int -> char 등등... (ex) itoa(바꿀숫자, char형으로 바꿔서 넣을변수, 10진수); itoa(int, char[], 10); 2. int CString , double CString // CString -> int convert CString strNum = _T("5"); int nNum = _ttoi(strNum); // int -> CString convert int nNum = 5; CString strNum; strNum.Format.. 2020. 11. 2.
728x90