captphan
Programmer
- Jan 24, 2007
- 42
I am calling a boolean function. When it returns False I want it to be treated as an error by my code.
I can move the actions to my error trapping, this is my error trapping code.
Code:
boolvariable = Builtinboolean function
if boolvariable is False then
ActionOne
ActionTwo
ActionThree
Treat As Error
End if
Code:
Select Case Err.Number
Case Else
MsgBox Err.Number & " " & Err.Description & Chr(13) & "In Function FunctionName"
DoCmd.RunSQL "UPDATE ErrorLog SET ErrorLog.ErrNumber = " & Err.Number & ", ErrorLog.ErrDescription = " & Err.Description & " , ErrorLog.ErrFunction = FunctionName ErrorLog.ErrDateTime = # " & Now() & "#, ErrorLog.ErrLine = " & Err.Erl & " , ErrorLog.ErrModule = ModuleName;"
Resume FunctionName_Exit
End Select