Board index » delphi » Exceptio when invoking overriden method from VBScript
David Taylor
![]() Delphi Developer |
Tue, 03 May 2005 17:56:01 GMT
Exceptio when invoking overriden method from VBScript
I have just started using VBScript to control delphi objects that expose a
dual interface. Everything works fine until I try and access a method of an object that Am I wrong to make methods that implement an interface virtual ? or is this This is the bones of what I am doing :- TMyObject = class(TAutoIntfObject, IMyObject) TMyNewObject = class(TMyObject) If I create an object from the first class and call the Set_Enable method Hope someone can help. |