defind form field from a function

  • Thread starter Thread starter יריב החביב
  • Start date Start date
×

יריב החביב

Hello,

I am try to run function on a form

(that work well when run as sub from that form)

I am getting run time error that one of the fields not defind good

here is my definition :

combodate = Forms!tteiinanamer!me.Combo24

What is wrong ?


thank you
 
You can't use both a reference to a form and the keyword Me. You use one or
the other:

combodate = Forms!tteiinanamer!Combo24

or

combodate = Me!Combo24
 
Back
Top