2024-03-25, 18:48:45
Phil,
Running the control in a Parallels VM might explain the issue.
Before creating the AntView control set the property AdditionalBrowserArguments.
So in VB that would look along the lines of:
--
Wil
Running the control in a Parallels VM might explain the issue.
Before creating the AntView control set the property AdditionalBrowserArguments.
So in VB that would look along the lines of:
Code:
Private Sub Form_Load()
EdgeWebBrowser.AdditionalBrowserArguments = "--disable-gpu"
EdgeWebBrowser.CreateWebView
EdgeWebBrowser.EventsUseHexadecimal = True ' For VB we need to use the Hexadecimal event variants
EdgeWebBrowser.UnlockControl "ExampleCompany", "WI5PO2-2KSU3Q-HWFXFU-IUMU2V-QF8P2F"
--
Wil