Macro in MS Access 2007 pulling up 'One Note' Template

roboz

New member
Local time
Today, 14:40
Joined
Jun 26, 2012
Messages
5
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
 
Last edited:

Users who are viewing this thread

Back
Top Bottom