type
  MyHardPoint =^MyStructCompose;
  MyStructCompose = Record
  No: string;                  //编号
  TypeName: string;           //类别
  Name: string;              //名称
  Model: string;            //型号
  Num: string;             //数量
end;type
  MyPoint =^MyStruct;
  MyStruct = Record
  ID: string;                   //编号
  Compose: MyHardPoint;        //组成
  Re: string;               //备注
end;
现在结构MyHardPoint 被结构MyPoint 调用,
如果想把结构MyPoint 中Compose的值取出来,如何解决???