Q&A

  • activexform에서 자식 폼에서 선택한 값을 부모에게 리턴하는 방법좀..
부모 :
unit XFileDownload1;

{$WARN SYMBOL_PLATFORM OFF}

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ActiveX, AxCtrls, XFileDownloadPrj1_TLB, StdVcl, StdCtrls;

type
TXFileDownload = class(TActiveForm, IXFileDownload)

자식:
implementation
uses XFileDownload1;

{$R *.dfm}

procedure TForm3.Button1Click(Sender: TObject);
begin

     XFileDownload1.TXFileDownload(?????).Edit1.clear; --> 이부분이 에러남..
어떻게 작성해야하는지..
1  COMMENTS
  • Profile
    이희진 2003.11.01 21:30
    그다지 권장할 만한 코딩은 아니라고 봅니다.

    (Form3.GetOwner as TXFileDownload).Edit1.clear;