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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top