Charles,
I'm rather sure I'm not telling you anything you don't already know, but given my current "talent" for making errors I would really find it nice if your plugin "reported" errors to TCC (via a "On Error" or "On ErrMsg" command and is something not earthshaking for you to implement). Specifically, given a batch file that I wrote containing the following to specifically "illustrate" the issue in all of its "glory" (;)):
Here is the (expected by you, I'm rather sure) output:
Is this something you can fix/will ever be fixed?
- Dan
I'm rather sure I'm not telling you anything you don't already know, but given my current "talent" for making errors I would really find it nice if your plugin "reported" errors to TCC (via a "On Error" or "On ErrMsg" command and is something not earthshaking for you to implement). Specifically, given a batch file that I wrote containing the following to specifically "illustrate" the issue in all of its "glory" (;)):
Code:
@Echo Off
On ErrorMsg Goto HaveAnError
Set /A Age=2**64-1
@Echo %@AgeDate[%Age]
@Echo No error caught!
Quit 16
:HaveAnError
@Echo Yes it was an error!
Quit 0
Code:
ISO8601 plugin: Z:\DemoAgeDateFailureToDetectAnError.btm [5] Age out of range "184
46744073709551615"
No error caught!
- Dan