Jump to content

Perpeto

Members
  • Content Count

    15
  • Joined

  • Last visited

Everything posted by Perpeto

  1. We are evaluation upgrading to Delphi 12. If I read this https://docwiki.embarcadero.com/Libraries/Athens/en/System.NativeInt correctly, in Delphi 12 I have to do: MyList.delete(NativeInt(0)) compared to MyList.delete(0) in Delphi 11.3?
  2. Perpeto

    Delphi 12 is available

    Holy shit. Really? This is so "f*king" annoying.
  3. 1. Add TNumberbox anywhere 2. Set Mode to "nbmFloat" 3. Enter a negative Number like "-1.234" 4. Select whole number and press "-" ... nothing happens, besides it would override the value Imo the issue is here: function TCustomNumberBox.IsValidChar(AKey: Char): Boolean; begin .. if (AKey = '-') and ((SelStart <> 0) or LText.Contains('-')) then Result := False .. end; It tests, if the string already has an "-". But it does not test, if the whole string is selected, i.e. the user wants to override the whole value. Can anyone reproduce this too or tell me, if I am wrong? Otherwise I would create a bug report for this. Thanks!
  4. Couldnt find it. Perfect. Thank you 🙂
  5. Hallo everyone, has anyone tried the official "DelphiLSP" Plugin for Visual Studio Code (https://marketplace.visualstudio.com/items?itemName=EmbarcaderoTechnologies.delphilsp) yet? Some time ago I have used OmniPascal (http://blog.omnipascal.com/) by Christopher Wosinski and the code completion has already worked better than in Delphi IDE. So I have hope in the official "DelphiLSP", so that I can use Visual Studio Code instead of the Delphi-IDE at least for "just programming", i.e. no Forms etc. Or does the official plugin has the same "code completion"-issues as in the Delphi IDE ?
  6. Perpeto

    Erro PlayStore aab

    I do not know, if this is an individual api key and requires protection, but maybe remove your google api key from your post above.
  7. Hallo everyone, I get access violations in my multi-threaded application, if it tries to read a resourcestring. I do not understand why or at least, why this is a problem. If I surround those calls with critical sections, everything is fine. It gets an AV here: Thanks in advance!
  8. Perpeto

    --solved--

    Nevermind.. solved the issue.. !
  9. Perpeto

    RAD Studio 11 Alexandria is now available

    Has anyone already tested, if the lsp code insight now works significantly better than before for large projects?
  10. Perpeto

    TMS and CoPilot, and Delphi ?

    If we have a working LSP, we can talk about "LSP + new KI".. besides that I do not think there are enough delphi projects on github to "feed" copilot.. compared to more popular languages like js, c# etc
  11. Perpeto

    Delphi 10.4.2 first impressions

    has worked like a charm! thanks to you and @emailx45 ! 🙂 now also compiles alot faster
  12. Perpeto

    Delphi 10.4.2 first impressions

    sounds interesting.. do you have any further information why this can help? Will try it out, if I find some time.. thanks!
  13. Perpeto

    Delphi 10.4.2 first impressions

    Does not work for me properly. If I start a new project form scratch it works just fine. But if I load a "real world" project, it neither underlines the warning/hint nor states it in the status-bar at the bottom.. even if I recompile the whole project... 😞 it would've been such a nice feature
  14. If I remember it correctly, you have to set "LXmlDoc.Active := true".
  15. Hallo everyone, the "Quick Access" or "Quick Search" is really slow for me in 10.3 Rio. If I type something, it takes like 5 to 10 seconds until it shows the results. In previous versions it has showed them instant, i.e. "quick". For now Ive switched to STRG+F12 to search for units. Nonetheless Ive really liked or at least get used to use the quick access search bar in the past releases. Has anyone experienced the same or is it known, that is now slower? Thanks!
×