Hello all!
I have a simple form with a dozen fields in a MS Word document that I need to print to a pdf file. I'm looking for a solution to end up with a "Save print output as" -window suggesting a name concatenated from three fields in the form.
I've managed to print the file with the concatenated name, but I do not know how to let the user choose the destination folder.
My code has the name concatenated
I'd like to keep my code as simple and clear as possible.
What would be the best way to proceed from here?
Any ideas are very much appreciated!
Kind regards,
VBA dummy
I have a simple form with a dozen fields in a MS Word document that I need to print to a pdf file. I'm looking for a solution to end up with a "Save print output as" -window suggesting a name concatenated from three fields in the form.
I've managed to print the file with the concatenated name, but I do not know how to let the user choose the destination folder.
My code has the name concatenated
strDocName = Replace(strDocName, Chr(32), "")
I'd like to keep my code as simple and clear as possible.
What would be the best way to proceed from here?
Any ideas are very much appreciated!
Kind regards,
VBA dummy