트리 컴포넌트를 생성해서 파라미터로 전해진 폼에다가
표시하는 dll을 만들고 싶은데요.
폼에 표시가 안되서요...
트리 아니라, 어떤 것도 안되네요.
자체 내에서는 되는데요...
DLL의 함수는 다음과 같습니다.
무엇이 잘못 되었나요?
procedure ShowTree(FormN : TForm);
begin
TreeView := TTreeView.Create(FormN);
with TreeView do
begin
Name := 'ddd22';
Left := 100;
Top := 10;
Font.Name := FormN.Font.Name;
Font.Size := FormN.Font.Size;
ParentFont := False;
Parent := FormN;
ParentBiDiMode := True;
ParentColor := False;
ParentShowHint := True;
Items.Add(nil, 'ddd');
end;
TreeView.Show;
end;