Well, that's definitely interesting. When I encountered the exact same issue, that was the solution. I'll look into it a bit further once I get home from work.
Just to further clarify, my SQL code for cmbType is below. I think the reason the requery doesn't work is due to the SQL I'm using. However, since it's a cascading combo box, I can't really alter the SQL query to get what I want I don't think. It needs to use this SQL to pull in all the choices initially so they can be selected, but the requery doesn't work because the combo box isn't associated with any particular InternalIncidentID to begin with.
Code:
SELECT tblClassificationTypes.ClassificationTypeID, tblClassificationTypes.ClassificationTypeName
FROM tblClassificationTypes;