G
Guest
I seem to be having trouble passing the err object to a function, I'm sure I
just have no idea what object type I'm supposed to be receiving but this one
is eluding me.
can someone fill in the ??? below
'some sub
'error handler
report_error(err)
'end sub
function report_error(errObj as ???)
msgbox errObj.Description
msgbox errObj.Number
end function
just have no idea what object type I'm supposed to be receiving but this one
is eluding me.
can someone fill in the ??? below

'some sub
'error handler
report_error(err)
'end sub
function report_error(errObj as ???)
msgbox errObj.Description
msgbox errObj.Number
end function