본문 바로가기
반응형

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.
반응형