Drilling down

  • Thread starter Thread starter Mike Lang
  • Start date Start date
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
 
DoCmd.OpenForm "TheOtherForm", ...

Check Access VB Help on the OpenForm method for the options.
 
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.
 
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.
 

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