2022-04-19, 11:29:33
I'm trying to set up event "OnNavigationCompleted" or "OnFrameNavigationCompleted" in IDE but an error window pops up
“Function or interface marked as restricted, or the function uses an automation type not supported in Visual Basic”
VB6 IDE: AntView private build v1.1.150.0.
By the way, "OnNavigationStarting" works fine
It seems that in VB6 it is not possible to determine whether a page has already been fully loaded
Do you have any idea how to fix it?
--
Przemek
“Function or interface marked as restricted, or the function uses an automation type not supported in Visual Basic”
VB6 IDE: AntView private build v1.1.150.0.
By the way, "OnNavigationStarting" works fine
Code:
Private Sub EdgeWebBrowser_OnNavigationStarting(ByVal Args As AntViewAx.IAntViewNavigationStartingEventArgs)
Debug.Print Args.URI
End Sub
It seems that in VB6 it is not possible to determine whether a page has already been fully loaded
Do you have any idea how to fix it?
--
Przemek