Copy data to pop form

  • Thread starter mattc66 via AccessMonster.com
  • 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?
 
T

TonyT

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..
 
Top