Form display

P

PJ

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?
 
S

Steve

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
[email protected]
 
M

Maurice

In addition to steves reply:

After_update

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