2023-02-23, 21:22:08
Hi Bernard,
It looks like that you missed the solution I posted above.
Your solution does not work in VB6, it still triggers the error that was originally posted. I just tested that in VB6 to verify that it can't be used as a workaround. It would have been really nice if it worked.
However the following does work (needs the 1.1.270 release):
There's a new BrowserProcessIDLong property that was introduced as a solution for this problem.
--
Wil
It looks like that you missed the solution I posted above.
Your solution does not work in VB6, it still triggers the error that was originally posted. I just tested that in VB6 to verify that it can't be used as a workaround. It would have been really nice if it worked.
However the following does work (needs the 1.1.270 release):
Code:
Dim PID As Long
PID = EdgeWebBrowser.BrowserProcessIDLong
Debug.Print "PID = " & CStr(PID)
There's a new BrowserProcessIDLong property that was introduced as a solution for this problem.
--
Wil