Hi All,
When my PBCC application reads a line in a text file that has two adjacent single quotes, it reads then as a single double quote.
The source file has a line
abc ='';
But PBCC reads it using the code
Line Input #fNum, a$
and sets the contents of a$ to
abc =";
This font makes the source line look very much like the contents of a$, but if you move your cursor over it, you can see it has two ' characters, not one " character.
I am still using PBCC4, since 5 did not add anything I need, but if the problem is fixed in 5, I will upgrade.
Thanks,
When my PBCC application reads a line in a text file that has two adjacent single quotes, it reads then as a single double quote.
The source file has a line
abc ='';
But PBCC reads it using the code
Line Input #fNum, a$
and sets the contents of a$ to
abc =";
This font makes the source line look very much like the contents of a$, but if you move your cursor over it, you can see it has two ' characters, not one " character.
I am still using PBCC4, since 5 did not add anything I need, but if the problem is fixed in 5, I will upgrade.
Thanks,
Comment