Forms

  • Thread starter Thread starter TaylorLeigh
  • Start date Start date
T

TaylorLeigh

I have a form with an input field for Organizations. I have a command button
that takes me to the Organization form to add new organizations. This works
great. The only problem is that after I close the Organizations form and am
back to my original form, I cannot see the new Organization until I close out
and reopen. What I would like to do is open the Org form, input the data and
when I close that form and return to my original, have the new name already
in that field.

Can you help?

Thanks,
 
I have a form with an input field for Organizations. I have a command button
that takes me to the Organization form to add new organizations. This works
great. The only problem is that after I close the Organizations form and am
back to my original form, I cannot see the new Organization until I close out
and reopen. What I would like to do is open the Org form, input the data and
when I close that form and return to my original, have the new name already
in that field.

Can you help?

Thanks,

Requery the input field (a combo box I presume???) in the Close event of the
organizations form:

Forms!YourMainForm!YourControlName.Requery
 
Back
Top