Report showing in a form

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

Guest

I have form where I have entered a butoon (starts a query) which allows me to
search on keywords within a table. The result of running the query is a
report which just has 3 bits of information. I would like this report to be
seen as a window within my form rather than a stand alone report (it just
takes a small amount of room).

How do I do this?
 
In design mode for your form, drop the query into the body of the form. This
will create a subform that you can format to look like your report. Your
button will have to refresh this data in addition to calling the query. In
fact, you can combine all of this into one form by adding textboxes to your
form to feed the keyword to your query.
 
Back
Top