Q&A

  • findcomponent를 사용할때여...
보통은..

TComboBox(findComponent('combo1')).Font.Charset := DEFAULT_CHARSET'

이런식으로 사용하자나요...

저기 'combo1'은 배열로(string) 선언해서 읽어올수 있는데..
TComboBox는 배열로(string or control) 선언해도 읽어올 수 가 없네여..
(control에서는 font가 protected라 사용할 수 없어여..)
고수님들..
좋은 방법좀 알려주세요..
1  COMMENTS
  • Profile
    이경돈 2003.06.12 03:58

    combo1 의 상위 컴포넌트에서 findcomponent 하시면 됩니다.
    var
    tmpCpt : TComponent;
    begin
    tmpcpt := form1.FindComponent('combo1');
    Tcombobox(tmpcpt).Font.charset := 'DEFAULT_CHARSET'
    end;

    하시면 됩니다.
    end;