KlausW
Active Member
- Joined
- Sep 9, 2020
- Messages
- 463
- Office Version
- 2016
- Platform
- Windows
Hi everyone
I am using this VBA code to download a file (It is an Excel file) from my Android mobile phone.
But I can't get it to download the file from this folder, "This PC\Don Wittus mobile\Internal storage\LagerDannebrog\" on Android mobile phone.
But it goes to this folder, "C:\Users\k-wit\Documents"
All help would be appreciated.
Best regards
Klaus W
I am using this VBA code to download a file (It is an Excel file) from my Android mobile phone.
But I can't get it to download the file from this folder, "This PC\Don Wittus mobile\Internal storage\LagerDannebrog\" on Android mobile phone.
But it goes to this folder, "C:\Users\k-wit\Documents"
All help would be appreciated.
Best regards
Klaus W
VBA Code:
Sub Rektangelafrundedehjørner1_Klik()
Dim fPath As String
fPath = Sheet13.Range("C12").Value
Call Shell("explorer.exe " & fPath, vbNormalFocus)
End Sub