Jump to content

Lajos Juhász

Members
  • Content Count

    1050
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Lajos Juhász

  1. Lajos Juhász

    FireDAC Mongo driver, CA and SSL certificates

    You can find the details in the documentation: https://docwiki.embarcadero.com/RADStudio/Athens/en/Connect_to_MongoDB_Database_(FireDAC) For more information you follow the link to https://www.mongodb.com/docs/manual/tutorial/configure-ssl-clients/
  2. I have checked this on D11.2 there is also both RTLVersion111 and RTLVersion112 defined.
  3. Lajos Juhász

    TParallelArray Sort Performance...

    Stefan you should give at least 48 hours to a new version before you break it. It does handle array of 100_000 integers. Maybe for a larger arrays you have to buy a special SKU for sorting.
  4. Lajos Juhász

    Delphi takes 9 seconds to start/shutdown an empty application

    I also have no problem using Delphi 11.2 on Windows 11 using a Laptop with i7-1165G7 @ 2.80GHz 16GB and SSD.
  5. Lajos Juhász

    Delphi 12.2 available for download

    Using procedure TForm1.Button1Click(Sender: TObject); begin ShowMessage(ISO8601ToDate('0600-12-31T13:13:13Z').ToString); end; I get: [Window Title] Project1 [Content] 01.01.0601 10:46:47 AM [OK]
  6. This is now working on D12.2. (Code formatter is still broken).
  7. Lajos Juhász

    Update New Indy / TLS1_3 / FireUI Live

    There is one at the repository https://github.com/IndySockets/Indy.
  8. Lajos Juhász

    Delphi 12.2 available for download

    I have tried to search for a couple no luck for those. We couldn’t find any matches for ‘RSS-683’. Check your search for typos, or try another search term. We couldn’t find any matches for ‘RSP-42257’. Check your search for typos, or try another search term.
  9. Lajos Juhász

    Delphi 12.2 available for download

    I cannot find those tickets on the QP portal.
  10. Lajos Juhász

    Delphi 12.2 available for download

    The QP list is usually updates later.
  11. Lajos Juhász

    Delphi Datasnap Android unicode problem

    You can set mapping rules on a connection or query. In both cases you would double click the component. Select the Option menu. Check the Ignore inherited rules, in the stringgrid set the mapping from dtAnsiString to dtWideString. This will required that you change the class from TStringField to TWideStringField for the fields.
  12. According to https://www.embarcadero.com/docs/rad-studio-feature-matrix.pdf version 12.2 should greatly improove the C++ side.
  13. Lajos Juhász

    Delphi Datasnap Android unicode problem

    You can try to use a mapping rule on the Datasnap server to map AnsiString to WideString that should solve the problem.
  14. Lajos Juhász

    Delphi Datasnap Android unicode problem

    My guess is that the data in the database is written using codepage 1250. On Windows the program converts the field values from CP 1250 to UTF-16 while Android does not.
  15. No, it is not. It also breaks the deprecated code formatter. Unfortunately, we must wait until Delphi 15 to use this new feature.
  16. I am aware. Unfortunately that is thr only right way to do it. You can try to hack the system. Unfortunately that depends heavily on the memory layout and the classes current definitions as a result most probably will break with every version of the Delphi.
  17. I guess you already know the answer. Enter a ticket on the Quality Portal to request access to the fields you want. Give a good explanation why whould you want those fields to be public or protected in order to reach MFGA (Make Firemonkey Great Again).
  18. Lajos Juhász

    Use old glyph with tpngobject in 10.4?

    The glyph is an old "obsolate" property to assigning the image, also using png is an old and should not be used in modern applications. Nowdays you should use svg stored in virtual image list to be able to support various DPI settings.
  19. Lajos Juhász

    Receiving an 'Unsafe app blocked' message

    As it was mentioned earlier developing for mobile platforms is a moving target. In case of Android you have to follow the rules that Google sets every year. You cannot use the same tool for years like for Windows.
  20. Lajos Juhász

    Can Control Elements have "EventHandlers"?

    Without having more information: - If a component is placed on the form using the IDE the owner of the component is going to be the form. This can be different when the component is created runtime. - You can go using in the component hierarchy using the parent property until you find the form you are looking for.
  21. Lajos Juhász

    "Death to WITH" in your Delphi Code

    There is no need for with in your example: procedure TMyForm.UpdateInventoryItem(const NewQty: Integer); var a: <the required type>; b: <the required type>; begin a:= dmStoreInventoryData; b:= A.tblUpdateItemForStore; B.Edit; B.FieldByName('Qty').AsInteger := NewQty; B.Post; end; With will not make this code any cleaner.
  22. Lajos Juhász

    Navigator disappeared from GetIt

    Which version of Delphi?
  23. Lajos Juhász

    TreeView Grid lines

    While the component has no property you can send a message to the underlying win32 component. Everything you need is in Winapi.CommCtrl. There is a TreeView_SetLineColor to send a message.
  24. Lajos Juhász

    Delphi 2007 and XE5 Crashes on Windows 11

    Do it from Delphi 12, the License action were added after XE5.
  25. Lajos Juhász

    Delphi 2007 and XE5 Crashes on Windows 11

    I believe this was a sign that the IDE thought it was cracked? There were posts about this. Try to open LicenseManager from XE5 and refresh the license.
×