L
Lars Brownies
In the err_handler of my procedures I use:
Call ErrLog("frmMyForm", "Form_Current", "Error " & Err.Number & ": " &
Err.Description)
I noticed that I can also capture the particular Err.Number and
Err.Description in the ErrLog procedure, which would make the ErrLog call
shorter:
Call ErrLog("frmMyForm", "Form_Current")
Is it a good idea to implement it like this or can I run into trouble?
Thanks,
Lars
Call ErrLog("frmMyForm", "Form_Current", "Error " & Err.Number & ": " &
Err.Description)
I noticed that I can also capture the particular Err.Number and
Err.Description in the ErrLog procedure, which would make the ErrLog call
shorter:
Call ErrLog("frmMyForm", "Form_Current")
Is it a good idea to implement it like this or can I run into trouble?
Thanks,
Lars