Reputation: 27
I had to change code of an older Delphi application in D2007. I required a login screen that was online (with Auth0), in which I could read the state of the result and according to that do some license handling.
The problem is, that whenever I try to login with Google Social account, it results in an information screen that wants me to update my browser.
The app is a Win32 app, running on Win32 and Win64 devices. I had tried to work with this solution: How to have Delphi TWebbrowser component running in IE9 mode? But any DWORD value I give to my exe, it just doesn't help me get rid of the notification.
I've been looking to use TChromium instead of TWebBrowser, but it seems buggy to me.
Are there any other ways to deal with this issue? Thanks
Upvotes: 0
Views: 961
Reputation: 8341
If you use DWORD values mentioned in the linked topic then TWebBrowser would be working in IE9 emulation mode. And since IE9 is considered as being old various sites will advise you to update your browser.
So what you need is to make sure that TWebBrowser in your app is running in IE11 emulation mode instead.
Based on information found here:
https://msdn.microsoft.com/en-us/library/ee330730(v=vs.85).aspx
you should use DWORD value of 00011000
instead for full IE11 emulation.
Upvotes: 0