Pop-up Box

  • Thread starter Thread starter Andre Adams
  • Start date Start date
A

Andre Adams

Hey guys.

I've searched through the threads unable to find something that would
specifically pertain to this situation. I'm running a client Account table
that's linked to the "Money Manager" table usng the "look-up" wizard. Upon
opening the account, is it possible that once the Manager's name is put in,
before it will allow you to tab I can put in a pop up to tell users what this
account will require. i.e "no confirms", "no statements"....

Please let me know.

Andre Adams
 
You could create a form for manager and name it the managers name. In each
form specify the requirements with labels or textboxes on the form. Then in
the Before Update event of your Manager's Name field, you could place this
code.

Dim ManagersName as string
ManagersName = Me.NameOfTheControlYouPutTheManagersNameIn
DoCmd.OpenForm "ManagersName"

This would open the form with the list of requirements for that manager.
There are ways to do this with parameter queries so that you wouldnt have to
make a new form for each manager, but without the design of your tables I
wouldnt be able to give that example.
 

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

Similar Threads

Ascending order 3
Groups 1
Report 3
Name Changes 1
How can I stop a windows Media player pop up on my PC 3
Pop-up form that creates record that links 1:1 to main form 0
Date Range 1
Crosstab Query 13

Back
Top