I wonder if someone can help me. I inherited several MS Access DB's, One has a "Print Macro" which pulls up a 'Info Path' Template
The Print Macro Code is:-
Option Compare Database
Option Explicit
Private Sub Form_Load()
Debug.Print sFolio
Me.Filter = "folio = '" & sFolio & "'"
Me.FilterOn = True
End Sub
I edited the 'Info Path' Template with some new Text. However when i run this Macro, it still Prints the old template, even thought the edited Template, is saved with the exact same File name and in the exact same location.
Can anyone tell me how to fix this code or is there some other problem.
Bob
The Print Macro Code is:-
Option Compare Database
Option Explicit
Private Sub Form_Load()
Debug.Print sFolio
Me.Filter = "folio = '" & sFolio & "'"
Me.FilterOn = True
End Sub
I edited the 'Info Path' Template with some new Text. However when i run this Macro, it still Prints the old template, even thought the edited Template, is saved with the exact same File name and in the exact same location.
Can anyone tell me how to fix this code or is there some other problem.
Bob
Last edited: