본문 바로가기

작업일지/Delphi

windows 7에서 delphi7 dpr파일 더블 클릭으로 열기 그림참조 더보기
열거형에서 문자열을 취득하는 함수. 열거형에서 문자열을 취득하는 함수. {열거형의 값을 문자열로 변환 하고 prefix를 제거한 값을 되돌린다.예를들어 비트레이트의 열거형이 존재 한다고 할때, 값이 br1200인데 1200만 취득하고 싶을때 사용한다. 인자:AEnumType: TypeInfo; // 열거형AValue: Integer; // 열거형 값APrefix:string; // 열거형의 제거 할 부분리턴값:문자열. 사용법:sBitrate := EnumNameToStr(TypeInfo(TBitrate), Ord(br1200), 'br');}function TEncodeOption.EnumNameToStr(AEnumType: TypeInfo; AValue: Integer; APrefix:string): string;begin Result .. 더보기
Delphi XE이상의 유닛 스코프 Unit Names - Alphabetical List with Unit Scopes Go Up to Unit Scope Names This topic contains a reference list of the unit names in RAD Studio along with their associated unit scope names. You can search for a particular unit of interest, and immediately see the unit scope to which the unit belongs.Alphabetical List of Units with Their Unit Scope NamesABAccessibility = Vcl.ABAccessibilityAbnfUti.. 더보기
델파이 컴파일러 버전 델파이에서 사용되는 컴파일러 버전 상수. 출처 : http://delphi.wikia.com/wiki/CompilerVersion_Constant CompilerVersion ConstantThis page is intended as a supplement to the official documentation on Delphi programming. CodeGear is in the process of putting the Delphi documentation on the Web. Once they have done so, this page will link to the relevant page in the official documentation.This article is a stub. Please .. 더보기
delphi XE2에서 TurboPower Orpheus408 설치. DesigneIde에러 발생. 1. DesignIntf.pas 경로: C:\Program Files\Embarcadero\RAD Studio\9.0\source\ToolsAPI 2. DesignIde.dcp경로 : C:\Program Files\Embarcadero\RAD Studio\9.0\lib\win32\release 컴파일시 어느 소스의 함수인자중 c: Char이 있고 case문에서 에서 c를 사용한다. Duplicate label에러 발생시 Char -> Ansichar로, String -> AnsiString로 변경. 더보기
TSynEdit 에러부분 수정 SVN으로 소스를 받을 경우 소스파일의 유니코드 문제로 에러가 발생. function TSynCustomHighlighter.IsWordBreakChar(AChar: WideChar): Boolean; begin case AChar of #0..#32, '.', ',', ';', ':', '"', '''', '?, '`', '?, '^', '!', '?', '&', '$', '@', '?, '%', '#', '~', '[', ']', '(', ')', '{', '}', '', '-', '=', '+', '*', '/', '\', '|': Result := True; else Result := False; end; end; 위와 같은경우 아래처럼... function TSynCustomHighlighter.. 더보기