One more bug to add to the very long list of Modern Web Browser control bugs!!!
I was working on what I was hoping would be a nifty demo database to utilize for fun media capabilities that HTML5 offers and got it all working fine in Edge, on its own. Sadly, when I then tried to bring it over into Access I hit a wall.
After testing I discovered that Access will accept a Control Source like:
="https://msaccess/C:\Users\Daniel\Desktop\blank.html"
="https://msaccess/C:\Users\Daniel\Desktop\" & [FilePath] & ""
where [FilePath] returns ‘blank.html’ (and yes the ending & “” is required to get around another bug!)
So, simply accessing a file is possible. We knew that.
—
Where things then start to fall apart is when we try to pass parameters as part of the URL of any local files. Thus, passing parameters like demonstrated in the following 2 examples fail.
Continue reading →