Form display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I hope you can direct me in the right direction.

I'm trying to have a form display only when criteria from a combo box is
selected from a different form. How would I do that?
 
Use code to open your display form in the AfterUpdate event of the combobox.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
(e-mail address removed)
 
In addition to steves reply:

After_update

if me.combobox = [criteria here] then
docmd.openform "your formname here"
end if
 

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

Back
Top