Jump to content

softtouch

Members
  • Content Count

    151
  • Joined

  • Last visited

Everything posted by softtouch

  1. softtouch

    Delphi 11.3 is available now!

    Why would I buy a new monitor? I have a 43" 4K monitor, which is new.
  2. softtouch

    Delphi 11.3 is available now!

    I tried that already, to no avail. But what works for now is to move all the toolbars to the main menu line.
  3. softtouch

    Delphi 11.3 is available now!

    I already did. But that wont help me now. I guess I have to go back to 11.2 for now.
  4. softtouch

    Delphi 11.3 is available now!

    DPI aware. With dpi unaware, they stay where they should be.
  5. softtouch

    Delphi 11.3 is available now!

    My toolbar problems (see 3 posts above) appear to exist only with a monitor scaling between 124% and 130%. Below or above its ok. Any suggestion hos this can be patched? Makes working a little hard.
  6. softtouch

    Delphi 11.3 is available now!

    Delphi 11.3 always rearrange its toolbars with every start. The first attached image shows how it should look after I move them to their positions, the second image shows what Delphi 11.3 makes out of it. With every restart of the IDE, I have to rearrange the top toolbars 😞 I am using a 4K monitor with a scaling of 125%. When I use Delphi DPI unaware, it stays always the same, when I use a monitor scaling of 100%, it always stays the same, but when I use a monitor scaling of 125% on my 4K display, it rearrange the toolbars. That did not happen in any version below 11.3 (11.0, 11.1, 11.2).
  7. softtouch

    Desktop path crossplatform?

    Is there a single function to retrieve the path to the Desktop which works on Windows and macOS?
  8. softtouch

    Desktop path crossplatform?

    Yes, that seems to be the only way at the moment. Thanks for that!
  9. softtouch

    Screenshot on macOS

    I am trying to figure out hot to make a screenshot via code of the own app when running on macOS, but could not find a solution. Does anybody here has a clue for me? Windows is no problem, just macOS cause headache.
  10. softtouch

    Screenshot on macOS

    I will play with it, thanks. Edit: Tested and works just fine 🙂
  11. softtouch

    Desktop path crossplatform?

    Thanks, I thought there might be a single function somewhere in IOUtils, but apparently not. All other path are available via IOUtils, just the desktop path not.
  12. Is there any way to detect that the webview2 runtime is installed on the target system?
  13. For macos, I tried Indy, which need openssl, and does not seem to work with newer openssl libs or tls 1.3, or even with the systems ssl implementation. I also tried using THttpClient, which works but crash on mac when trying to set a proxy. There is also stated that it will always use the system proxy. I need to use public and private proxies, multiple requests, each request has to use another proxy. Does anybody know any 3rd. party component that can use ssl without the need of openssl, and can set individual proxies for each request?
  14. I could provide a private proxy if needed. I can also provide the small test program. When I set the proxy with h.ProxySettings := TProxySettings.Create(<IP>,<PORT>,<USER>,<PASS>); it will call the procedure TMacHTTPClient.SetMacProxySettings in System.Net.HTTPClient.Mac, which calls various functions like "LDict.setValue(TNSNumber.OCClass.numberWithInt(1), kCFNetworkProxiesHTTPEnable);", but all the calls to kCFNetworkProxiesHTTPEnable and other "kCFNetworkProxies..." return always an empty string, causing somehow the app to crash.
  15. I tried both variations, both crash at the same line. Even setting a proxy would not work on macOS, it still should not crash the program. I used this same code already on older macOS versions, and there was no crash. Possible macOS 13.x cause it, I have no clue and also cant spend much time to investigate this, I just need to find a working component which works under Windows and macOS target, not using openssl.
  16. The example code is just the smallest possible code causing the crash. The moment I set a proxy, it crash in the code seen in the screenshot there in System.Net.HttpClient.Mac, thats why I cant use THttpClient, even I would like to (because of the ssl thing).
  17. @esegece your post is unrelated to my request of a 3rd party component that works without openssl on macos.
  18. Unfortunately, I cannot get that to work with macOS/Cross platform and it seems to use also openssl.
  19. The following code (compiled under Delphi 11.2, target macOS 64 bit, macOS is Ventura 13, sdk is 13.1) h:=THTTPClient.Create; h.ProxySettings.Create(<IP>,<PORT>,<USER>,<PASS>); h.Get(<URL>); h.Free; works fine on Windows 32 and 64 bit target, and it use the proxy. With macOS target, it trigger an exception class 6. The exception happen in System.Net.HTTPClient.Mac, see attached image. What am I doing wrong?
  20. softtouch

    Delphi 11.2 - Unable to use proxy with macOS target

    That sounds bad. I thought that was fixed in 10.4. At leat, it should not crash the app... Is there any other http client out there which works with Windows and macOS and does not relay openssl libs? I need to do GET, HEAD, POST, and all by using various proxies, multithreaded.
  21. softtouch

    ICS V8.70 announced

    Will there be in the near future any update to support macOS 64 bit?
  22. With Delphi 11.1 update 1 and firemonkey platform, with targets Win and macOS, when I compile for Win, no issue, then I switch platform and try to compile for osx, and get the following error: When I exit and restart the ide, I can compile for osx, but the same error comes up when switching back to Win64 target.
  23. softtouch

    form data store component ?

    I believe, the component you have been looking for was TmxStorage from maxcomponents.
  24. softtouch

    form data store component ?

    All right. Does it allow to add binary files too or only text files?
  25. softtouch

    form data store component ?

    Do you have by chance the component available? I am also looking for a form storage.
×