I am trying to implement an interface in VB6. I defined a class Cast_Speedlike this ...
Public Function Run_Time() As Long
End Function
and an implementation like this ...
Option Explicit
Implements Cast_Speed
Public Function Cast_Speed_Run_Time() As Long
Cast_Speed_Run_Time = 0
End Function
but trying to compile it gives an "object module" to implement "Run_Time" for the Cast_Speed ββinterface. Can anyone see what I'm doing wrong? My routines seem to be all right, but all the functions I'm trying to do have this problem.
source
share