A
Ayo
For example I am try to set the format of a comboBox that can take many
values but I want to be able to set the format for each value.
If Me.cmbTrackerFields.Value = "Denied" Then
Me.Form.Filter = "[Invoice Tracker].[" & Me.cmbTrackerFields.Value &
"]='" & Me.cmbFieldValues.Value & "'"
Me.Form.FilterOn = True
I want to be able to set the format for
Me.cmbFieldValues.Value to "Yes/No".
I tried this
Me.cmbFieldValues.Format = "Yes/No"
but that didn't work.
Any ideas?
Thanks.
values but I want to be able to set the format for each value.
If Me.cmbTrackerFields.Value = "Denied" Then
Me.Form.Filter = "[Invoice Tracker].[" & Me.cmbTrackerFields.Value &
"]='" & Me.cmbFieldValues.Value & "'"
Me.Form.FilterOn = True
I want to be able to set the format for
Me.cmbFieldValues.Value to "Yes/No".
I tried this
Me.cmbFieldValues.Format = "Yes/No"
but that didn't work.
Any ideas?
Thanks.