Allen Browne - Find as you type - Can I print the results

E

efandango

Hello Allen (or others)

I am using Allen Browne's great utility 'Find as you type' on a form, but
now want to print the results of the forms output. Can it be done?
 
A

Allen Browne

efandango said:
I am using Allen Browne's great utility 'Find as you type' on a form, but
now want to print the results of the forms output. Can it be done?

You may be able to apply the form's filter as the WhereCondition for
OpenReport, like this:

Dim strWhere As String
If Me.FilterOn Then strWhere = Me.Filter
DoCmd.OpenReport "Report1", acViewPreview, , strWhere
 

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

Top