Move Data from 1 Form to Another.

C

Cyndy

The 2 forms involved are: frmFormInventorySite and Form
Orders. The user selects all the forms that need to be
ordered by clicking a checkbox for each form and entering
the number of units needed. After all selections have been
made the user clicks Place an order buttonto move the data
from the Inventory form to the Form Orders form. Currently
the code is as follows:
If Me.ysnOrder = True Then
Forms![Form Orders].Controls![Form Number].Value =
Forms!frmFormInventorySite.[strFormNumber]
There are more fields to process , but how do I code
reiteration.Thought about DoLoops, but the looping would
end as soon as it hit true or the false.
 

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