Q&A

  • 컴포넌트 생성...
컴포넌트 생성시 이컴포넌트가 생성이 되어있는지..

안돼있는지 알수 있나요..

어디선가 본거 같은데.. A로 시작하는 거 같던데...

아닌가??



1  COMMENTS
  • Profile
    최용일 2001.03.10 05:11
    안녕하세요. 최용일입니다.



    Assign을 말하시는것 같군요...



    if Assign(SomeComponent) then ...



    컴포넌트를 프리할때 확실히 nil처리를 해주지 않으면 오동작합니다...



    var

    SomeComponent: TSomeComponent;

    begin

    SomeComponent := TSomeComponent.Create(...);

    ...

    SomeComponent.Free;

    if Assign(SomeComponent) then

    ShowMessage('헉 컴포넌트가 아직두 살아있네???');

    end;



    ^^ 항상 즐코하세요...



    델파초짜.. wrote:

    > 컴포넌트 생성시 이컴포넌트가 생성이 되어있는지..

    > 안돼있는지 알수 있나요..

    > 어디선가 본거 같은데.. A로 시작하는 거 같던데...

    > 아닌가??

    >