동적으로 컬럼을 생성하려구 합니다.
따른 컬럼은 잘 되는데 이놈의 cbsEllipsis는 선언이 안되는군여.
소스는 ========================================================
new_column := DG_Temp.columns.Add; //부서적요 field
new_column.FieldName := 'jukyo';
new_column.Color := cl3DLight;
New_column.AlwaysShowEditButton := True;
New_column.EndEllipsis := True;
New_column.ButtonStyle := cbsEllipsis;
===============================================================
랍니다. 근데 마지막 줄에서 Undeclared identifier : 'cbsEllipsis' 랍니다.
Help에서 똑같이 카피를 해도 cbsEllipsis는 틀린거 같지 않구, 실행중에 inspector로 값을 cbsEllipsis로 바꾸면 제대루 생성이 되는데여..
도데체 어디가 잘못된 걸까여....
Undeclared identifier 에러는 대부분 uses 절에
유닛을 포함시키 않았을때 발생합니다...
그럼..
땡글이 wrote:
> 동적으로 컬럼을 생성하려구 합니다.
> 따른 컬럼은 잘 되는데 이놈의 cbsEllipsis는 선언이 안되는군여.
>
> 소스는 ========================================================
> new_column := DG_Temp.columns.Add; //부서적요 field
> new_column.FieldName := 'jukyo';
> new_column.Color := cl3DLight;
> New_column.AlwaysShowEditButton := True;
> New_column.EndEllipsis := True;
> New_column.ButtonStyle := cbsEllipsis;
> ===============================================================
>
> 랍니다. 근데 마지막 줄에서 Undeclared identifier : 'cbsEllipsis' 랍니다.
> Help에서 똑같이 카피를 해도 cbsEllipsis는 틀린거 같지 않구, 실행중에 inspector로 값을 cbsEllipsis로 바꾸면 제대루 생성이 되는데여..
> 도데체 어디가 잘못된 걸까여....
>