03-28-2024, 05:10 AM
Of course you could do this:
Code: (Select All)
For x% = 1 To 1024
e$ = _ErrorMessage$(x%)
e$ = RTrim$(e$)
If LCase$(e$) = "unprintable error" Then
' nul
Else
Print x%; e$
End If
Next
End