M
M Skabialka
In the after update code for your combo, to clear the combo, place something
like this:
me!mycombobox = ""
or
forms!myform!mycombobox = null
Or in the On Current event for the form, to show the current record,
something like one of these:
forms!myform!mycombobox = forms!myform!employeename
me!mycombobox = me!employeename
mycombobox = employeename
Mich
like this:
me!mycombobox = ""
or
forms!myform!mycombobox = null
Or in the On Current event for the form, to show the current record,
something like one of these:
forms!myform!mycombobox = forms!myform!employeename
me!mycombobox = me!employeename
mycombobox = employeename
Mich