G
Guest
I have a combobox on a form that is disabled based on data in another
combobox. I have a command button on the form to append the data to a table.
However, I need to be sure all of the Enabled fields have data or exit the
sub before appending the data. I have tried:
If IsNull(Me.Market) and Me.Market.Enabled = True Then
It seems that if conditional formatting disables the combobox, it doesn't
actually set the Enabled Property of the combobox so when using
Me.Market.Enabled it will always be true.
How do I accomplish this?
combobox. I have a command button on the form to append the data to a table.
However, I need to be sure all of the Enabled fields have data or exit the
sub before appending the data. I have tried:
If IsNull(Me.Market) and Me.Market.Enabled = True Then
It seems that if conditional formatting disables the combobox, it doesn't
actually set the Enabled Property of the combobox so when using
Me.Market.Enabled it will always be true.
How do I accomplish this?