F first Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #21 to beta 不会报错,只是当远程客户端创建Com对象事,Create方法不会自动执行
B beta Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #22 constructor MyInterface.Create(AOwner: TObject AApplication: TApplication); begin Self := TMtsAutoObject.Create(AOwner); MyDatMod := TDataModule1.Create(AApplication);//创建数据模块 end; 还不行,我就不知道了:(
constructor MyInterface.Create(AOwner: TObject AApplication: TApplication); begin Self := TMtsAutoObject.Create(AOwner); MyDatMod := TDataModule1.Create(AApplication);//创建数据模块 end; 还不行,我就不知道了:(
H huawdg Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #26 MyInterface= class(TMtsAutoObject, Iree) private MyDataMod: TDataModule1;//本地数据模块 public constructor Create;reinstroduce; end; constructor Create; begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end; 没试过
MyInterface= class(TMtsAutoObject, Iree) private MyDataMod: TDataModule1;//本地数据模块 public constructor Create;reinstroduce; end; constructor Create; begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end; 没试过
H huawdg Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #29 写错了 constructor MyInterface.Create; begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end;
写错了 constructor MyInterface.Create; begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end;
F first Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #30 to 张无忌 我已试过不行,这是报“不支持此接口”的错误
F first Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #31 问题的根本原因在这 http://www.delphibbs.com/delphibbs/dispq.asp?lid=1480823
卡 卡色 Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #33 MyInterface= class(TMtsAutoObject, Iree) private MyDataMod: TDataModule1;//本地数据模块 public procedure Initialize override; end; procedure MyInterface.initialize begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end;
MyInterface= class(TMtsAutoObject, Iree) private MyDataMod: TDataModule1;//本地数据模块 public procedure Initialize override; end; procedure MyInterface.initialize begin inherited; MyDatMod := TDataModule1.Create(Forms.Application);//创建数据模块 end;
F first Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #34 根本的原因是在数据模块上的TDCOMConnection中,当把TDCOMConnection的Connected属性只为True时才报“不支持此接口”的错误, 我认为是在TDCOMConnection类中的DoConnect方法中产生的此错误, 只是不知该如何解决。李维的书中好象也没有提到此问题
根本的原因是在数据模块上的TDCOMConnection中,当把TDCOMConnection的Connected属性只为True时才报“不支持此接口”的错误, 我认为是在TDCOMConnection类中的DoConnect方法中产生的此错误, 只是不知该如何解决。李维的书中好象也没有提到此问题
Y yeath Unregistered / Unconfirmed GUEST, unregistred user! 2002-12-03 #35 那你不创建会错误???? 在数据模块中再创建数据模块会不会有问题????应该不会啊!