Making A .bat In A Blitz Program
BlitzPlus Forums/BlitzPlus Programming/Making A .bat In A Blitz Program| 
 | ||
| Hello everyone, i am trying to assemble a special batch from a blitz program, and if you do batch programming, you know you use ""s a lot. Now when i try to make a write line command, and i use ""s in the line to write, blitz goes crazy. Am I missing something here??? | 
| 
 | ||
| The quotes are already in use by blitz for the string definition. print chr(34)+"This"+chr(34)+" is a quote!" | 
| 
 | ||
| at Luke: b+ interpreted what you wrote as [empty string]s which didnt make any sense to it | 
| 
 | ||
| Well herese the answare. i guess u already found out. a$=a$+chr$(34) ; adds a " to a string. |