https://www.qb64.org/forum/index.php?topic=3558.msg129096#msg129096Look at line #350 and #351.
i% = UBOUND(ifield$)
REDIM entry$(UBOUND(ifield$))
Rem out i% = UBOUND(ifield$)
In v1.3, the IDE gives a Name already in use error. WTH?
It will accept REDIM entry$(i%)
I know I'm using the upper bounds of an array to DIM another array, but why will it work as coded, where the i% has NO FUNCTION in what's going on in the code, but when we Rem out i% = UBOUND(ifield$), it errors out?
If this doesn't do what I'm talking about, and you are using a more current version, then I just stumbled on an old bug, and the situation has been resolved. If it does error out in the newest version, it's either a bug, or something is going on that just makes no sense to me, since that i% part shouldn't effect the code, period.
Pete