S
Stewart
Guest
I frequently use the following code behind buttons on my forms, so that users can open documents from within Access:
dim stAppName as string
stAppName = "POWERPOINT.exe H:\NewSuspense_Guide.ppt"
Call Shell(stAppName, 1)
Here is my question:
Is there a way I can make this work, even if the document name, or the directory name contains spaces?
Thanks,
Lynn Stewart
dim stAppName as string
stAppName = "POWERPOINT.exe H:\NewSuspense_Guide.ppt"
Call Shell(stAppName, 1)
Here is my question:
Is there a way I can make this work, even if the document name, or the directory name contains spaces?
Thanks,
Lynn Stewart