Copy data to pop form

  • Thread starter Thread starter mattc66 via AccessMonster.com
  • Start date Start date
M

mattc66 via AccessMonster.com

I have a form that pop's up if the user click a button. I need to pass the
data from on feild on my main form to a feild on the pop up form. I tried
using the me.fldname = me.fldname after the DoCmd, but that didn't do it.

Any Ideas?
 
If you don't want to pass the information in the docmd.OpenForm code (which
is easier and more efficient) you need to specify the calling form;
me.fldname = Forms.OriginalFormName!fldname
the me. part only refers to the form which currently has the focus.

TonyT..
 

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