Jump to content

Json

Members
  • Content Count

    6
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Seems like PAServerManager looking for PAServer-24.0 but Delphi 13 is shipping PAServer-37.0 Delphi 12:s PAServer is PAServer-23.0 Anyone else got this problem? Apparently And shouldn't the manager be able to handle different version of PAServers? Renaming PAServer-37.0 to PAServer-24.0 solved my issue
  2. I needed to uninstall both Eclipse OpenJDK 17 and Android SDK 25.2.5 and then reinstall them.
  3. unit Unit2; interface uses System.Classes; type TTestClass = class public procedure Test<T: record>; end; implementation //procedure TTestClass.Test<T: record>; //begin // [dcc32 Error] Unit2.pas(21): E2029 ',', ';' or '>' expected but ':' found //end; procedure TTestClass.Test<T>; begin end; end. Delphi 11.3 Why do I need to leave out : record in the implementation for the code to compile?
  4. Yes I agree with you all. The problem is customer tends to use that sort of solutions in their test environments. So at least catch the errors is needed. More code to look after but will be replacing TWebBrowser with my own TcatchSSLErrorWebBrowser.
  5. Trying to load a website with TWebBrowser, the site have self signed certificates which will be flagged as not safe. I am ending up with a blank page. TWebBrowser.OnDidFailLoadWithError never trigger. The blank page occur on IOS and Android. On Windows there is a warning page, (NET::ERR_CERT_AUTHORITY_INVALID) What is the best way of catching the certificate errors or even better ignore them so the page can load? The application is only talking with its own web servers so the security isn't a problem here.
  6. Another day in the apple deploy lottery 😞 I needed to restart the mac for it to work
×