I have this line of code:
MSGBOX UCASE$(TRIM$(PARSE$(lRec$,"|",2)))
and this is part of the file it's reading:
SANTOPRENCE GRIP|W
NATURAL CORK|X
RUBBER CORK COMPOUND|Y
PINS|Z
Test|AB
When I enter AB, only the A is read. How can I get AB to be read?
MSGBOX UCASE$(TRIM$(PARSE$(lRec$,"|",2)))
and this is part of the file it's reading:
SANTOPRENCE GRIP|W
NATURAL CORK|X
RUBBER CORK COMPOUND|Y
PINS|Z
Test|AB
When I enter AB, only the A is read. How can I get AB to be read?
Comment