| View previous topic :: View next topic |
| Author |
Message |
gbzstro Newbie
Joined: 15 Dec 2002 Posts: 3
|
Posted: Mon Dec 16, 2002 3:53 pm Post subject: Ah help with "" in strings |
|
|
My poject at the moment requires me to pass "" to a DOS programe from a variable string.
%L = "message.txt" gives me just message.txt without the qoutes however I really need to pass "message.txt" as the DOS file needs to see
DOSFILE.EXE -Switch "message.txt" all I get is
DOSFILE.EXE -Switch message.txt - which does not work
How do I include "" in a variable string?
Thanking you in advance
Stuart Robinson |
|
| Back to top |
|
 |
Hortalonus Valued Contributor


Joined: 15 Mar 2002 Posts: 344 Location: Western USA
|
Posted: Mon Dec 16, 2002 3:57 pm Post subject: |
|
|
Try this:
| Code: |
%L = @CHR(34)message.txt@CHR(34)
|
|
|
| Back to top |
|
 |
Hortalonus Valued Contributor


Joined: 15 Mar 2002 Posts: 344 Location: Western USA
|
|
| Back to top |
|
 |
|