Drilling down

M

Mike Lang

I'm building an order entry system where any orders place on a client's
behalf show as a list e.g. ordernumber, supplier. Is there a easy way to
click on one of these orders and have it 'drill down' and show the full
order?

Thanks

Mike
 
V

Van T. Dinh

DoCmd.OpenForm "TheOtherForm", ...

Check Access VB Help on the OpenForm method for the options.
 
D

Duane Hookom

No, you should look up the Help information regarding the OpenForm method.
Do this while in a module to find the appropriate help. You will find you
can supply a "where condition" to filter the new open form to a limited set
of records.
 
M

Mike Lang

Thanks. Will do.

Duane Hookom said:
No, you should look up the Help information regarding the OpenForm method.
Do this while in a module to find the appropriate help. You will find you
can supply a "where condition" to filter the new open form to a limited
set of records.
 
Top