hi
This code will help u to find all the BorderStyle Available in VS 2005.
Drag a list box called(lstFontColor ) and a button called ( btnLoadColor) from tool box
under button click write the below code.
protected void btnLoadColor_Click(object sender, EventArgs e)
{
string[] colorArray = Enum.GetNames(typeof(KnownColor));
lstFontColor .DataSource = colorArray;
lstFontColor.DataBind();
}
Ragards
Santosh