In a form, I have two fields 1) BroadcastType and 2) Station. BroadcastType has a combo box with multiple value select property enabled. In 'after update' event property of 'broadcasttype' field, I have written this procedure:
But when I select a value from the combo box from 'broadcasttype' field, I get this message "Type Mismatch". I tried it with other fields and it works properly. It doesn't work with 'braodcasttype' field. Is it because that this field has multiple value select property enabled? How can I write a VBA code to make it happen?
Thanks,
Dad

Code:
if me.broadcasttype="Nationwide" Then
me.station.enabled = True
Else
me.station.enable = False
End If
But when I select a value from the combo box from 'broadcasttype' field, I get this message "Type Mismatch". I tried it with other fields and it works properly. It doesn't work with 'braodcasttype' field. Is it because that this field has multiple value select property enabled? How can I write a VBA code to make it happen?
Thanks,
Dad