Jump to content

Lajos Juhász

Members
  • Content Count

    828
  • Joined

  • Last visited

  • Days Won

    11

Posts posted by Lajos Juhász


  1. 15 hours ago, Sherlock said:

    Yeah, Embarcadero sometimes fights with their servers. They'll come around eventually. I guess Delphi 12 is lurking, and the servers are being prepped for it.

    You can only hope. I watched the C++ webinar to get an idea what we can expect from D12. The C++ part was far from finished.


  2. 22 minutes ago, Rollo62 said:

    My point is, if Embarcadero puts a lot of effort into multi-strings, then I'm asking what main purpose this should solve ?

     

    That's easy. The only reason is that they can say that finally managed to copy it from other languages. Lately that's the only driving force behind the R&D.

    • Like 1

  3. I cannot fully understand the question either. My bet is that the TDBgrid for blob fields instead of the value displays (Memo). In order to correct that a solution is to use  the OnGetText event of the TMemoField/TWideMemoField:

     

    Quote

    procedure TForm3.FDQuery1MyMemoFieldGetText(Sender: TField; var Text: string; DisplayText: Boolean);
    begin
      if DisplayText then
        Text:=Sender.AsString;
    end;
     

     

×