There's no way to give some of the rows in the combo box one color and others
another (that I know of, anyway--you may want to check Steve Lebans'
website), but the simple way is just to filter the combo box so that it
displays only those rows you want. You do this by changing the combo box'
Row Source property, in the same places where you're changing the forecolor:
Me!YourComboBox.RowSource = <sql statement>
For example, assuming you'd be filtering by the value of the status field,
and that the rows are in a table named Options, something like:
Me!YourComboBox.RowSource = "SELECT Options.ID, Options.Description FROM
Options WHERE Options.Status = Me!Status"
HTH
Sprinks