Create a ViewForm to View GROUP OF Forms

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

Guest

I am working in a database, with forms depending on Date; I am trying to
create a view form where I can choose the form that I want to view by
entering the date.
How can I create that view form?
 
I am working in a database, with forms depending on Date; I am trying to
create a view form where I can choose the form that I want to view by
entering the date.
How can I create that view form?

I'm not sure I understand.

A Form, in Access, is just a window, a tool to display data. You would
not "create" a new form just to view data filtered by a certain date.
You'ld have a Form based on a Parameter Query; when you supply the
paramter, which might come from a prompt or from another unbound Form,
you would open your "view" form to display that data. Or, you can use
the WhereCondition argument of the OpenForm method in VBA code - the
command button wizard will walk you through this.

John W. Vinson[MVP]
 
Back
Top