How can I get each enumeration?
Kind of:
VB Code:
public enum MediaType Dvd = 1 Cd = 2 Book = 3 end enum public sub xxxx for each enum in mediatype ...
Printable View
How can I get each enumeration?
Kind of:
VB Code:
public enum MediaType Dvd = 1 Cd = 2 Book = 3 end enum public sub xxxx for each enum in mediatype ...
see if this helps
http://vbforums.com/showthread.php?t...highlight=enum
I'm not sure if you want to do what I wanted to do though:D
It worked. Thanks!!!!