Hi
we have an access 365 application currently using the legacy control
we have tested the new edge control and we like it very much.
in order to migrate we need functionality we believe is missing.
most important one is access to the document object - see sample code below.
in the code below you see how we use the HTMLDocument to get values from it and use it to open forms.
questions:
1. how can we achieve this with the new edge control?
2. how can we force the new control when click on a link if first page, to default navigate new link in the same page - the legacy control does that by default?
3. we distribute the application with msaccess 365 runtime that is about one year old, do we need to distribute a new one and if yes what is the link to get it?
Code sample:
If em.tagName = "TABLE" Or em.tagName = "th" Then GoTo Exit_WebBrowser0_DblClick
TdCellIndex = em.cellIndex
VarValue = em.innerText
Set tb = Doc.getElementById("NGTable1")
For Each th In tb.getElementsByTagName("th")
If th.cellIndex = TdCellIndex And th.ID <> "" Then
strCol = th.ID
Exit For
End If
Next th
Thank you