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

  • Thread starter Thread starter efandango
  • Start date Start date
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?
 
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
 
Back
Top