| Posted: 10:34pm 01 Jun 2025 |
|
|
|
Thank you!
> Print "adding double quotes in a string "chr$(34)"c:\Program Files"chr$(34)" is done this way" addind double quotes in a string "c:\Program Files" is done this way > But for a string variable you need this:-
> P$ = "Or "+chr$(34)+"c:\Program Files"+chr$(34)+" this way" > ? P$ Or "c:\Program Files" this way > Edited 2025-06-02 09:17 by phil99 |