subform

  • Thread starter Pass-the-reality
  • Start date
P

Pass-the-reality

My main form (frmMainForm) contains a list box. The name of the list box is
Text17. On my main form, I have a subform (frmProductSelected). When I
updated the field QtyRequested on my subform, I would like the Text17 field
on my frmMainForm to requery. What code do I need to add to the
QtyRequested After Update field?
 
M

Maurice

You could try:

me.parent.controls.item("text17").requery
or
forms!frmMainform!text17.requery

hth
 

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

Top