Alas, there are a couple of minor edits to make. Line 453, which starts out as
Case vbByte, needs to have the next line:
Quote:
|
If IsNumeric(vval) and CByte(vval) = vval Then Exit Function
|
changed to:
Quote:
If IsNumeric(vval) Then
If CByte(vval) = vval Then Exit Function
End If
|
to work properly. I don't know why I'm not able to use "and" in there, it must be a BASIC quirk.