05-01-2024, 03:49 AM
(04-28-2024, 03:38 AM)a740g Wrote:@mkilgore : Excellent work on Const! Now I can:(04-28-2024, 12:29 AM)PhilOfPerth Wrote: I'm interested to see this, but when I try to run the code, I get an "Invalid Const" error for the Const declarations. Do I need another attached file or something? (I've downloaded the attached file)
I think you are on an old version of QB64-PE or QB64. QB64-PE got CHR$ and ASC support in CONST in version 3.12.
Code: (Select All)
Const Quote=Chr$(34)
Code: (Select All)
Dim Shared Quote As String * 1
Quote=Chr$(34)
Erik.