Q&A

  • Undeclared Identifier 에러




for i := 0 to ComponentCount - 1 do

begin

if Components[i] is TEdit then

TEdit(Components[i]).Clear;



TEdit 컴포넌트들을 clear 하기 위해 위와 같이 코딩을 했는데,



Undeclared Identifier: 'ComponentCount'

Undeclared Identifier: 'Components'



다른 프로그램에서는 위와 같이 코딩을 했었는데, 이상이 없었거든요.







1  COMMENTS
  • Profile
    임형호 2000.01.06 18:37
    황선희 wrote:

    >

    >

    > for i := 0 to ComponentCount - 1 do

    > begin

    > if Components[i] is TEdit then

    > TEdit(Components[i]).Clear;

    >

    > TEdit 컴포넌트들을 clear 하기 위해 위와 같이 코딩을 했는데,

    >

    > Undeclared Identifier: 'ComponentCount'

    > Undeclared Identifier: 'Components'

    >

    > 다른 프로그램에서는 위와 같이 코딩을 했었는데, 이상이 없었거든요.

    >

    >

    방금 위에 작성된 코딩을 그대로 붙여서 실행시켜봤는데요.... 이상무... 그럼...

    >