BSP-ZIP:QOUTE PRoblem

T

the Specialist

Guest
I am making a little program that is easier to work with than all that typing in dos but i've got a problem. I always displyas the string as strBspOld for example and not whats in the string. so the question is how can i get " in the string?



Code:
strFin = "bspzip -addfile " & """ & strBspOld & """ & """ & strRelPath & """ & """ & strDirPath & """ & """ & strSave & """"
 
Use the excape charactor '\'.

For example:

strFin = "blah blah \"I want this in quotes\" blah blah";
 
Ti133700N said:
If you use VB like me you can try ChrW(34).
Or he could use 4 quotes (i think it's 4, might be 2).
 
Back
Top