03Explorer
Technical User
I get the error on line 8. I have tried numerous ways. The system is windows 10 (if that matters) using Access 365.
Code:
CompiledDirectory = "%LocalAppData%\Synergy\Compiled\"
Dim fdObj As Object
Set fdObj = CreateObject("Scripting.FileSystemObject")
If fdObj.FolderExists(CompiledDirectory) Then
Debug.Print "Found it" '-- Should trigger every time after initial run of Synergy PER user
Else
Debug.Print CompiledDirectory
MkDir CompiledDirectory
Debug.Print "It has been created." '-- Should trigger once per user, upon first initial run of Synergy
End If