cpt := TLabel.Create(Self);
// cpt.Parent := TWinControl(TDrawActiveX); //ActiveX라서 주석처리했습니다
With cpt do
begin
Left := 5 + Int64((TrIt(Param2) + TrIt(Param4)) div 2);
Top := 5 + Int64((TrIt(Param3) + TrIt(Param5)) div 2);
Caption := '123454566'; // 일부러 캡션 넣어봤습니다
//showmessage(BoolToStr(Enabled) + ' : ' + inttostr(Top) + ' : ' + inttostr(left));
// ('' 값확인하느라고 뿌려봤습니다..
end;
그런데 ActiveX만 띄우면 라벨이 어리도 갔는지 보이질 않네요;;
제가 어느부분을 봐야 하는걸까요 ㅠㅠ 에고고.. 도와주셔요
parent := Self; 하니까 되네요 -_ ㅠ