With your suggestion, I was able to manipulate the text's appearance of an individual item. Here is my resulting code:
private void CarrierCBE_DrawItem(object sender, DevExpress.XtraEditors.ListBoxDrawItemEventArgs e)
{
String mCarrierName = (String)e.Item;
if (mCarrierName == null) return;
if (carriersBO1.Seek(String.Format("CarrierName = '{0}'", mCarrierName)))
{
if (carriersBO1.Inactive)
{
e.Appearance.ForeColor = Color.Gray;
e.Appearance.Font = new Font("Tahoma", 8.25F, FontStyle.Italic);
}
else
{
if (carriersBO1.Division == Enumerations.Division.Corporate)
e.Appearance.ForeColor = Color.Blue;
}
}
}
Thanks for your help!!
Bill