1/24/2009 1:30 AM | |
Posts: 8 Rating: (0) |
Hi, I ran into same problem with VBS. |
11/12/2009 1:44 PM | |
Posts: 102 Rating: (13) |
Hi! I just had the same problem. But you can solve it using quotes in the string that containsthe path... what I mean, is, instead of havingf a string containing: C:\Program Files\Program Folder\D1 it should contain: "C:\Program Files\Program Folder\D1" for using quotes inside a string in visual basic you have different possibilities... take a look at: http://msdn.microsoft.com/en-us/library/267k4fw5.aspx my favorite one is: [code] Dim programString programString = """" & "C:\Program Files\Program Folder\D1" & """" [/code] like that, programString = "C:\Program Files\Program Folder\D1" hope it is useful Palmerita |
Follow us on