How to set IfErrors flag from a dll function
Does anyone know how to set the IfErrors flag from a function in a dll?
I would like to create a function like (for example) IsWeekdayFriday().
Since the function "returns" a boolean, it seems simpler to use IfErrors rather than return a string and use StrCmp.
<nsi snip>
ClearErrors
MyDll::IsWeekdayFriday
IfErrors not_friday
Regards,
Henrik