vickspills
Programmer
I have a vb script and its failing because of a space in file name(abc xy.xlsx). I tried opeion ch(43) and """" options but not working.
Can somebody help me with this ?
Can somebody help me with this ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
FileNameWithSpace = "abc xy.xlsx"
wscript.echo DblQuote(FileNameWithSpace)
'--------------------------------------
Function DblQuote(Str)
DblQuote = Chr(34) & Str & Chr(34)
End Function
'--------------------------------------