Just a quick question about interfaces. Is it possible to define an enum
inside an interface?
An example
Option Explicit
Public Enum RptStatus
Opened = 0
Closed = 1
PrintError = 2
End Enum
Public Sub PrintStatus(ByVal JobID as String, ByVal Status as RptStatus,
ByVal StatusMessage as String)
End Sub
If this is possible, a possible problem would be if we decided to add more
status's, we would have to break the interface (I don't know if we would
ever need to add more). Is there a better solution to this?
Thanks,
sstewart