본문 바로가기
반응형

Delphi, RadStudio82

윈도우, 안드로이드, iOS, 맥 OS용 앱을 한 번에 개발하고 싶어요 윈도우, 안드로이드, iOS, 맥 OS용 앱을 한 번에 개발하고 싶어요. 요즘은 안드로이드 버전, iOS 버전 개발을 별도로 해야하기 때문에 둘 다 정직원을 쓰거나 (인건비 비용이 엄청나죠) 하나는 정직원, 하나는 프리랜서 또는 두 버전 모두 프리랜서를 고용해서 제품 개발을 하는 경우가 있습니다. 앱 개발이 부담이 되어서 하이브리드 앱 버전을 개발하는 사례도 빈번합니다. 이러한 문제를 해결해주는 개발툴이 몇 가지가 있습니다. Cross-X-platform 또는 Multi-platform 개발툴이라고 합니다. 제가 개발 해오던 개발툴 Delphi 7.0부터 주로 개발해 오던 개발 언어 IDE툴이 있습니다. (Fotran, assembly, C/C++, visual C++, visual Basic, visu.. 2020. 12. 6.
Delphi vs. C# vs. Java Delphi vs. C# vs. Java 출처 : http://vschart.com/compare/delphi-programming-language/vs/c-sharp/vs/java-programming-language 자세히 보려면 출처를 클릭하세요. 2020. 3. 10.
Delphi vs. Python Delphi vs. Python http://vschart.com/compare/delphi-programming-language/vs/python-programming-language Delphi Python Delphi (Pascal based programming language) Python Category Programming Language Programming Language Preference 49% votesvotes 51% votesvotes✏ Website www.​embarcadero.​com/​products/​delphi www.​python.​org License Commercial, Community Edition - Free Python Software Foundation .. 2020. 3. 10.
Delphi Compiler Versions Delphi Compiler Versions The following table lists the version number associated with each release of Delphi compilers, beginning with Turbo Pascal 4.0 and ending with the current version of the compiler:Delphi conditional VERProductProduct VersionPackage VersionCompiler VersionVER320Delphi Tokyo / C++Builder Tokyo (Delphi:Win32/Win64/OSX/iOS32/iOS64/Android) (C++Builder:Win32/Win64/OSX/iOS32/iO.. 2017. 9. 28.
[delphi] IP주소 유효성체크 [delphi] IP주소 유효성체크 20070326 function TForm1.IsValidIPAddress(strIP: String): Boolean; var TempList: TStringList; i: Integer; nTemp: Integer; begin Result := False; TempList := TStringList.Create; ExtractStrings(['.'], [], PAnsiChar(strIP), TempList); if TempList.Count = 4 then begin for i := 0 to 3 do begin nTemp := StrToIntDef(TempList[i], -1); if (nTemp 255) then begin break;.. 2017. 2. 12.
[delphi] 캡션없는 폼 드래그로 이동하기 [delphi] 캡션없는 폼 드래그로 이동하기 폼의 캡션을 사용하지 않거나 캡션이 없는 폼을 이동하는 방법입니다. 폼에 WMNCHitTest 윈도우 메시지 핸들러를 오버라이딩 해서 처리합니다. TForm1 = class(TForm) ... procedure WMNCHitTest( Var M: TWMNCHitTest ); message WM_NCHITTEST; ... end; implementation ... procedure TForm1.WMNCHitTest(var M: TWMNCHitTest); begin inherited; // call the inherited message handler if M.Result = htClient then // is the click in the client area.. 2016. 10. 13.
[Delphi] 작업관리자에 내 프로세서 감추기 [Delphi] 작업관리자에 내 프로세서 감추기 출처: 델마당 - 질문과 답변 [답변] 작업관리자에 내 프로세써 감추기 (델파이5 프로 구함) 98 시절 여러 해킹 프로그램이 이 함수를 이용하여 나쁜짓을 했었는데, 2000 이상급에서는 없어진줄로 압니다. 아마 보안 땜시... 뷰티 wrote: > 98 에서는 다음과 같이 RegisterServiceProcess 를 호출해서 프로세스를 숨길수 > 있습니다, 그런데 이 함수가 win2000 에서는 동작이 안되고 '시작점을 찾을 수 없다는' > 에러가 나옵니다 > > function RegisterServiceProcess(dwProcessID, dwType: Integer): > Integer; stdcall; external 'KERNEL32.DLL'; .. 2016. 10. 3.
[delphi] Thread를 이용하여 ProgressBar 그리기 [delphi] Thread를 이용하여 ProgressBar 그리기 2003.12.16 http://www.swissdelphicenter.ch/torry/showcode.php?id=1887...paint a moving progress bar using a background thread? Author: P. Below 1 Comment to this tip [Write new comment] [ Print tip ] Tip Rating (6): { Question: I am trying query to display records in a dbgrid.however, due to size of tables and joins takes a while for the query to Execute.is .. 2016. 7. 16.
[delphi/web] how to detect when a Document is comp... [delphi/web] how to detect when a Document is comp... 2004.01.12 An other example: This example shows how to detect when a document is completely loaded, even if it includes multiple frames. Only the final OnDocumentComplete event passes the same Dispatch interface as the OnNavigateComplete event handler. var CurDispatch: IDispatch; {save the interface globally } procedure TForm1.WebBrowser1Navi.. 2016. 7. 5.
반응형