M
Morris
Hello,
I've got this logging function fncLogFile defined in code for Form1 (so
in Project Explorer it's placed under Microsoft Office Access Class
Objects.
Now the code at some points calls some code from the module (placed
under Module section in Project Explorer). Now in this module I've this
line of code, where execution stops:
Call fncLogFile("Error " & Err.Number & ": " & Err.Description)
Is it because it's out of scope for module code? how can I make it
visible?
the function definition is this:
Private Function fncLogFile(command As String)
I've got this logging function fncLogFile defined in code for Form1 (so
in Project Explorer it's placed under Microsoft Office Access Class
Objects.
Now the code at some points calls some code from the module (placed
under Module section in Project Explorer). Now in this module I've this
line of code, where execution stops:
Call fncLogFile("Error " & Err.Number & ": " & Err.Description)
Is it because it's out of scope for module code? how can I make it
visible?
the function definition is this:
Private Function fncLogFile(command As String)