May 20 2021 11:23 AM
Hello
According to this link, I ought to be able to use an Edge Web Browser Control inside an Access form:
Unfortunately I am only given the option of a bog standard Internet Explorer browser, not Edge.
WhatIsMyBrowser.com reports IE11 (IE7 Compatability View)
I'm a 365 subscriber running Access 2104 (Build 13929.20386 Click-to-Run) and Edge 90.0.818.62 (Official build) (64-bit).
Any ideas?
May 20 2021 12:51 PM
Interesting that an official MS article states the Edge browser control is already available.
Unfortunately this isn't yet the case.
It was originally slated for Dec 2020, then the date was revised to Aug 2021, See Access roadmap
However, according to the MS Access development team at DevCon 2021, it is now unlikely that the Edge browser control will be available before the end of 2021
May 20 2021 01:01 PM
Top reply, I wasn't aware of the roadmap thank you @isladogs
May 20 2021 01:06 PM
Feb 14 2022 04:24 AM
Mar 28 2022 11:33 AM
@Lovicevic Will the current Webbrowser component work even after internet explorer is retired? Is it safe to continue using WebBrowser component in MS access application? My org wanted me to research on the danger of continuing with this component.
Mar 28 2022 12:05 PM
The answer is both Yes ,..and No
See this parallel thread IE11 retirement - What does this mean for MS Access Apps?
Mar 28 2022 01:34 PM
Mar 29 2022 09:57 AM
Mar 29 2022 10:15 AM
@George_HepworthI fully agree, it is somehow clumsy if you introduce a new browser and keep some attached tools unchanged over years, knowing that some hungry crowd is waiting ...
If found this in one of my clients' databases 🙂
Mar 29 2022 10:50 AM - edited Mar 29 2022 11:12 AM
My main issues of concern right now are:
1. The URL limit in IE is just 2083 characters whereas in Chrome / Edge, its at least 64,000 characters. The low limit in the IE web browser makes it difficult to load maps with several layers.
2. The Google JavaScript API no longer works with IE & has stopped one of my mapping apps working.
Mar 16 2023 08:53 AM
Mar 17 2023 06:31 PM
May 09 2023 02:17 PM
May 10 2023 06:55 AM
May 10 2023 07:10 AM
II have seen the details
In general there are two methods
Javascript execute
Javascript get value
- the names are not accurate 😂
I was looking for code samples on both.
At this poing i find the control little bugy
We would like to transition ASAP but we need some answers
Dchen
May 10 2023 08:03 AM
The 2 methods are actually RetrieveJavascriptValue & ExecuteJavascript
So far I've not done much with either of these but I use the following code to grab the value of co-ordinates from 2 textboxes latbox & lngbox on a local HTML file
Dim strPath As String, sngLat As Single, sngLong As Single
strPath = CurrentProject.Path & "\geolocal.html"
With Me.EdgeBrowser0
.Navigate "https://msaccess/" & strPath 'need prefix for local HTML file
.Visible = True
DoEvents
Do Until .ReadyState = 4
Loop
sngLat = .RetrieveJavascriptValue("document.getElementById('latbox').value")
sngLong = .RetrieveJavascriptValue("document.getElementById('lngbox').value
End With
two
May 10 2023 08:16 AM
Thank you for your answer.
I have tried the same.
What i need is to be able to run either one of these function and regurn objects such as html table cell properly collection etc.
Dchen
Sep 16 2023 12:55 AM
Sep 16 2023 08:57 AM
Daniel Pineault has provided a lot information on the modern web browser control.