G Guest Jun 16, 2004 #1 Can some one show me how to shadow an enumeration, specifically the System.Data.CommandType enumeration. Thanks, Kent
Can some one show me how to shadow an enumeration, specifically the System.Data.CommandType enumeration. Thanks, Kent
O One Handed Man \( OHM - Terry Burns \) Jun 16, 2004 #3 Public Class MyBasEnum Public Enum anEnum As Integer one two three End Enum End Class Public Class MySubEnum Inherits MyBasEnum Public Shadows Enum anEnum four five six End Enum End Class
Public Class MyBasEnum Public Enum anEnum As Integer one two three End Enum End Class Public Class MySubEnum Inherits MyBasEnum Public Shadows Enum anEnum four five six End Enum End Class
H Herfried K. Wagner [MVP] Jun 16, 2004 #4 * "=?Utf-8?B?S2VudA==?= said: Can some one show me how to shadow an enumeration, specifically the System.Data.CommandType enumeration. Click to expand... Please be more specific.
* "=?Utf-8?B?S2VudA==?= said: Can some one show me how to shadow an enumeration, specifically the System.Data.CommandType enumeration. Click to expand... Please be more specific.