C++ Builder/기타자료
-
Rad studio 10.3.3 rio 설치C++ Builder/기타자료 2022. 3. 22. 11:40
관리자 권한 setup 실행 -> 체크 후 동의 시리얼 선택화면에서 이전화면 클릭 후 patch 실행. patch key generate후 Next. ->설치 실행. ( patch 계속 켜 놔야함) 설치완료 후 finish 클릭 전에 patch 에서 patch한 후 finish. devexpress 설치 https://dlsenfl.tistory.com/entry/devexpress-%EC%84%A4%EC%B9%98 devexpress 설치(Rad 10.3.3 버전) Dev설치할때 Rad 설치 폴더에 복사후 설치해야 에러없음. 설치경로 ex) C:\Program Files (x86)\Embarcadero\Studio\20.0\DevExpressVCL19.1.2 DxAutoInstaller.exe 실행 설..
-
ctrl + space (code completion)C++ Builder/기타자료 2020. 1. 22. 20:32
Rad 10.3 버전부터 clang 컴파일러를 강화하면서 변화가 생김. 프로젝트를 저장(폴더만들어서 save all) 한상태에서 작업해야 Ctrl + Space 기능 사용가능. Tips for working with the new Code Completion supportThere are some items to be aware of with the new code completion.The new code completion will take effect when using the Win32 or Win64 Clang compilers. Before using Code Completion with the Clang enhanced compilers in 10.3, you will need to firs..
-
-
윈도우db자동백업C++ Builder/기타자료 2019. 5. 29. 09:51
Step1. backup.bat 파일을 생성한다. backup.bat // 로컬호스트DB백업 127.0.0.1@echo offecho Running dump..."C:\Program Files\MariaDB 10.1\bin\"mysqldump -u사용자명 -p비밀번호 --result-file="c:\backup.%date%.sql" 데이터베이스명echo Done! 설명: file = " 백업파일을 저장할 경로" // 원격DB백업@echo offecho Running dump..."C:\Program Files\MariaDB 10.1\bin\"mysqldump -umodu -pmodu1004 -h 192.168.123.52 -P 3306 --result-file="C:\Users\Administrator\..
-
뮤텍스(Mutex)C++ Builder/기타자료 2019. 5. 9. 13:26
//프로그램 한번만 실행. Mutex 이용해서 중복실행 방지하는 방법입니다.프로젝트.cpp에 아래와같이 뮤텍스를 추가하세요.프로젝트.cpp를 열려면 메뉴 / Project / View Source //---------------------------------------------------------------------------int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int){HANDLE Mutex;try{const wchar_t ProgMutex[] = L"ErpProject"; // 프로그램이름 if((Mutex=OpenMutex(MUTEX_ALL_ACCESS, false, ProgMutex))==NULL){Mutex = CreateMutex(N..
-
Virtual-Key CodesC++ Builder/기타자료 2019. 4. 18. 11:36
The following table shows the symbolic constant names, hexadecimal values, and mouse or keyboard equivalents for the virtual-key codes used by the system. The codes are listed in numeric order. Constant/valueDescription VK_LBUTTON0x01 Left mouse button VK_RBUTTON0x02 Right mouse button VK_CANCEL0x03 Control-break processing VK_MBUTTON0x04 Middle mouse button (three-button mouse) VK_XBUTTON10x05 ..