Jump to content

pietrt

Members
  • Content Count

    9
  • Joined

  • Last visited

Community Reputation

1 Neutral

Technical Information

  • Delphi-Version
    Delphi 10.3 Rio

Recent Profile Visitors

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

  1. pietrt

    [Spring4D] Remove collection elements

    You can also use the RemoveAll method: list.RemoveAll( function(const foo: TFoo): boolean begin result := foo.Value < 100; end); dict.RemoveAll( function(const aPair: TPair<string,TFoo>): boolean begin result := aPair.Value.Value < 100; end);
  2. pietrt

    Up-to-date 32 bit libmysql.dll?

    I can download the 32 bit installer (8.0.18) here: https://dev.mysql.com/downloads/installer/ You should be able to do so as well? Pieter
  3. pietrt

    Keyboard Covers the Focused Controls

    take a look at this: https://stackoverflow.com/questions/16411056/how-to-adjust-layout-when-soft-keyboard-appears They declare android:windowSoftInputMode="adjustResize" in the manifest and </requestfocus> in the layout file. I don't know if you can do that in Delphi.
  4. I do it in the TMARShttpServerIndy.OnConnect, that is a TIdServerThreadEvent = procedure(AContext: TIdContext) of object; Client's Ip address: AContext.Binding.PeerIP Pieter
  5. pietrt

    cross-platform audio editor?

    Take a look at https://github.com/Fr0sT-Brutal/awesome-delphi#audio, it has listed some audio libraries.
  6. pietrt

    FDMemtable bug ?

    I can confirm this, but Left click on the FDMemtable1 object and choose "Fields editor..." again and you will see your fielddefs again. The fielddefs were in the formfile the whole time, but did not show up in the object inspector.
  7. pietrt

    RIO - FDMemTable fielddefs design time bug ?

    It is not only FDMemTable or FieldDefs, I see it regularly. If you select it a second time you have the unique values again.
  8. pietrt

    I'm looking for these menus in the IDE

    You can view differences in the history tab. In the history tab select the differences tab. You can then select show in difference viewer (top of editor) and you get the commands you asked for.
×