What is the Access VBA Syntax to save to the logged in users desktop?
What is the Access VBA Syntax to save to the logged in users desktop?
The logged in user is Environ("username"), not sure about the rest.
I googled from your response and found this syntax which works!
Code:Environ("USERPROFILE") & "\Desktop\"
Thanks for posting the solution.