I have a program that enters data in pdf's and saves them within a set file. This all works fine until I start saving to files that have parentheses in their names. Example below with code.
I have the following code that is the source of all the error:
Dim SavePDFFldr As String
SavePDFFldr = "S:\Housing & Silencers\Product(s)\(EXF) - Standard Combo Supports\4 - Drawings\Sales Drawing (New)"
With some non-relavant code between.
Application.SendKeys SavePDFFldr
The output is
S:\Housing & Silencers\Products\EXF - Standard Combo Supports\4 - Drawings\Sales Drawing New
... The exact same thing, just missing the parentheses.
How do I make the sendkeys type the much needed parentheses (or use a similar function).
I need to be able to save the directory as that SavePDFFldr and have it entered exactly when I call for it.
Thank you in advance for any/all help.