|
문제는 첨부 그림과 같은 Error가 발생하는 것이고,
property로 선언 하기만 하면 해당 에러가 발생합니다.
(아마도 제공된 component 자체에 문제가 있는것은 아닌가 하네요.)
어찌해볼길이 없어 해당 컴포넌트를 직접 작성하는 중입니다...
Neocon3 올림
잔머리대왕 님이 쓰신 글 :
: 이 답변이 맞을지 모르겠네요.
: Component Class안에서 타 Component class를 링크 시켜 사용할 경우에는
: Notification함수에서 Operation의 Remove에 대한 처리를 해주셔야 합니다.
:
: void __fastcall [클래스명]::Notification(Classes::TComponent* AComponent, Classes::TOperation AOperation)
: {
: [참조 클래스명]::Notification(AComponent, AOperation);
: if(AOperation == opRemove)
: {
: if(AComponent == FLabel_1)
: {
: FLabel_1 = NULL;
: // 그외 처리...
: }
: }
: }
:
: [참고] ImageList같은 컴포넌트 링크시는
: ImageList가 설정될때
: UnRegisterChanges, RegisterChanges, FreeNotification함수를 사용하셔야 합니다.
:
|