I have a command button driving an event on a form "Preview Print"
When the entry field looses focus, I would like the field to update, so the results of the entry will display on the print preview.
If try to create an event, I get a VBA script:
The Macro builder doesn't have an option for the action 'on lost focus update'
How can I get my form to update when the print preview command button is clicked?
Hefly
When the entry field looses focus, I would like the field to update, so the results of the entry will display on the print preview.
If try to create an event, I get a VBA script:
Code:
Private Sub Text102_BeforeUpdate(Cancel As Integer)
End Sub
The Macro builder doesn't have an option for the action 'on lost focus update'
How can I get my form to update when the print preview command button is clicked?
Hefly