I succesfully created a VBA sub to import a VBA module from a local file with code like
sImportFile = "C:\temp\Module.bas"
ThisWorkbook.VBProject.VBComponents.Import sImportFile
For update reasons the file should be on the web, for example
sImportFile = "http://mywebsite.org/download/Module.bas"
But then I'm getting a Path/File access error (Error 75). The download folder is not protected. How to import from an URL?