能具体点么?
我想如果想把另一个外部程序作为MDI的子窗体,那么必须要把其外部程序的主窗体做为MDI的frmchild:在MDI的主窗体中uses unitchild;
然后定义过程:procedure frmMain.creatchild(Const Name:string);
             begin
               frmChild:=TfrmChild.creat(Application);
             end;        ^………………
        调用时:
           CreatChild('myChild');
          ………………………………