Q&A

  • ActiveX 제거와 관련하여
상황은 이러합니다.
a.ocx라는 파일을 동적으로 프로그램서 객체를 생성합니다.
var
  a : TTestInterface;
begin
  a := TTestInterface.Create(Self);
  a.Parent := Self;
end;

뭐 이런식이겠
0  COMMENTS