Actually I went ahead and worked out the rest for ya real quick:
VB Code:
  1. Enum Animals
  2.         Dog
  3.         Cat
  4.         Bird
  5.         Elephant
  6.     End Enum
  7.  
  8.         Dim vals As Array
  9.         Dim nams As Array
  10.         vals = Animals.GetValues(GetType(Animals))
  11.         nams = Animals.GetNames(GetType(Animals))
  12.         Dim cnt As Short
  13.         Dim cntMax As Short
  14.         cntMax = vals.Length - 1
  15.         For cnt = 0 To cntMax
  16.             cboAnimals.Items.Add(nams.GetValue(cnt) & "=" & vals.GetValue(cnt))
  17.         Next
  18.         vals = Nothing
  19.         nams = Nothing

The code assumes a combo or list box named cboAnimals and should be put in the form_load or some other sub.