Hello again everyone!

Is it possible to use a For loop to load all the system cursors / VB.NET cursors into a combobox. I tried the following (which obviously couldn't work - but it's based on a similar way I load all the system fonts - FontFamilies)

Code:
        Dim cC As Cursor
        For Each cC In Me.System.Windows.Forms.Cursor
            cboCursors.Items.Add(cC.Name)
        Next
Any advice?