{
lbAppointmentDates.DrawMode = DrawMode.OwnerDrawFixed;
e.DrawBackground();
Brush myBrush = Brushes.Black;
MessageBox.Show(e.Index.ToString());
myBrush = Brushes.Red;
myBrush = Brushes.Orange;
myBrush = Brushes.Purple;
}
e.Graphics.DrawString(lbAppointmentDates.Items[e.Index].ToString(), e.Font, myBrush,e.Bounds,StringFormat.GenericDefault);
e.DrawFocusRectangle();
}Can anyone tell me why this might not be working?Thanks,Paul