A structured way to do this is to make an auxiliary / functional part of the interface. Now you can let two different classes implement this interface, one of which provides empty implementations, and the other - real logic.
, , . , .
Dim obj As IMyInterface
Set obj = New EmptyImplementationClass
Call obj.SomeSub() ''// Executes no code
Set obj = New RealImplementationClass
Call obj.SomeSub() ''// Executes the real implementation