hi softkans,

try this

At the top
Imports System.Reflection

and then ...

Dim properties As PropertyInfo() = GetType(System.Drawing.Color).GetProperties(BindingFlags.Static Or BindingFlags.Public)

Dim color As PropertyInfo
For Each color In properties
ListBox1.Items.Add(color.Name)
Next

please RESOLVED this post if u got the result