Page 1 of 1

Problem with WebView4Delphi in Delphi 7

Posted: Tue Oct 08, 2024 6:41 am
by odontonet
Good morning. I have the following question. In a Delphi 7 application I use the WebView4Delphi component to display a website. The application is installed on a server in a shared folder on the network so that different users can connect to it.

What is happening is that the first user who connects can open the form where the WebView4Delphi component is located and can browse, the other users who connect later do not have the browser open, it is as if the dll used by the component was left in exclusive mode open by the first user who accessed it. What practice would you recommend to solve this?

Thank you in advance

Re: Problem with WebView4Delphi in Delphi 7

Posted: Tue Oct 08, 2024 12:12 pm
by salvadordf
Hi,

Try setting a different GlobalWebView2Loader.UserDataFolder value for each user.
Preferably a local directory in their computer.

Re: Problem with WebView4Delphi in Delphi 7

Posted: Wed Oct 09, 2024 10:58 am
by odontonet
Thank you very much for the reply, it works fine.