B
blisspikle
Can any Public class be inherited from? I installed some software on
my pc and I can use it in my code, but I cannot seem to inherit from
it. It was an executable that installed on my pc, I do not understand
how that works, but I can use it. I put it in the references to use
it in my code.
If I look at the definition it just says..
Public Class CABEthernet
Member of: vHMIABE
I can do the following....
Public Class MyClass
Public myInstance as new vHMIABE.CABEthernet
End Class
Shouldn't I be able to do the following...
Public Class MyClass
Inherits vHMIABE.CABEthernet
End Class
my pc and I can use it in my code, but I cannot seem to inherit from
it. It was an executable that installed on my pc, I do not understand
how that works, but I can use it. I put it in the references to use
it in my code.
If I look at the definition it just says..
Public Class CABEthernet
Member of: vHMIABE
I can do the following....
Public Class MyClass
Public myInstance as new vHMIABE.CABEthernet
End Class
Shouldn't I be able to do the following...
Public Class MyClass
Inherits vHMIABE.CABEthernet
End Class