I have an interface class that I have been able to add a couple of new properties to along with one function thus far. The new properties and function have been "implemented" to the other 6 classes that implements the interface class. I was able to see these properties and function and add code with no problem to all 6 classes.
Today, I tried adding a public sub to my interface class that required an object to be passed in:
Public Sub ModemOnComm(commModem as MSComm)
End Sub
Once I added this sub procedure to the interface and went back to the classes to add the appropriate code, the list of previous properties/subs/function were gone. They came back the moment I removed the above sub procedure from the interface class.
Any ideas???
:confused:
Today, I tried adding a public sub to my interface class that required an object to be passed in:
Public Sub ModemOnComm(commModem as MSComm)
End Sub
Once I added this sub procedure to the interface and went back to the classes to add the appropriate code, the list of previous properties/subs/function were gone. They came back the moment I removed the above sub procedure from the interface class.
Any ideas???
:confused: