썸네일 [Delphi] Install OpenCV in Delphi 10.2 Tokyo Reference : http://www.fmxexpress.com/professional-open-source-computer-vision-library-for-delphi-xe7-firemonkey-on-windows/ 우선, OpenCV 소스 코드를 다운 받고, 링크된 페이지의 내용에 맞추어 설치.First of all, download the source code of OpenCV and run the execute file. https://github.com/Laex/Delphi-OpenCV msvcp140.dll 은 2017버전이 깔려있으면 굳이 2015를 설치하려고 애쓰지 않아도 됨. 설치도안됨..if you have visual c++ 2017 version, you don't need t..
썸네일 [Delphi] UAC(User Account Control) Drag and Drop 윈도우에서 사용자 권한에 의해 윈도우 메시지를 못 받는 경우가있다.임의로 추가하여 처리해 주어야 함. Drag and Drop 예제- 소스내 주석으로는 2004년에 Peter D Johnson라는 사람이 올린 소스를 수정하였음. 중요한 것은 권한 추가!아래 함수를 추가하면 된다. procedure SetDragAndDropOnSystemsWIthUAC(Wnd: HWND; IsEnabled: boolean); procedure TForm1.SetDragAndDropOnSystemsWIthUAC(Wnd : HWND; IsEnabled : boolean);type TChangeWindowMessageFilter = function(Msg : Cardinal; Action : Word) : Bool; stdca..
썸네일 [Delphi] JsonObject To String 델파이에서 Json 사용하기Using Json in Delphi 우선 델파이의 string에서 Json형태로 변경해주는 한줄 함수At first, the function converting string to JsonString in 1 row. uses 절에 REST.Json 추가Add REST.Json @ uses TJson.JsonToObjectTJson.ObjectToJsonString 클래스 함수로 선언된 것이라 반드시 TJson.을 붙여서 사용해야함This has to write with TJson in front of the function because it is a class function as you can see. 간단한 클래스 생성Create simple class 사용방법Usage..
썸네일 [Delphi] AP2DEV (DataLoad by Delphi XE2) 델파이로 만든 첫 프로그램.. 운영데이터를 개발로 내리기 위해 만든 툴...