Jump to content


Maik2

Member Since 21 Mar 2025
Offline Last Active May 21 2026 07:54 AM
-----

Posts I've Made

In Topic: Indicator Column - Show a numeric field

09 May 2026 - 07:50 PM

Hi Boki,
 
Thanks for the professional and speedy implementation.
I just downloaded and installed the hotfix.
 
However, when I change the `IndicatorWidth`, the indicator arrow is not drawn on the left side,
but rather in the center; consequently, no space remains to the right of it for custom information.
ow can I achieve left-aligned behavior?
 
In the example (see photos), I set `IndicatorWidth` to 36, resulting in the following outcome...
 
Thanks again for everything.
 
Best regards,
Maik

In Topic: Indicator Column - Show a numeric field

08 May 2026 - 01:36 PM

Hello Boki,
 
Thank you for your quick reply.
I will leave it as a standard visible column for now, and I hope that you might be able to add the option for custom character indicators in one of the upcoming versions.

Until then, best regards from Pirna.

In Topic: Select Item in Slides Editor

20 January 2026 - 09:44 AM

Hello Boki.

Thank you for implementing this useful feature in the current version 1-26.

Best regards
Maik


In Topic: Select Item in Slides Editor

17 December 2025 - 10:48 PM

Hi Boki, that would be really great and would be a big help to me at work.


In Topic: NextDBGrid5 in Slide Mode, Graphic - not stored as BLOB

10 November 2025 - 08:59 PM

procedure TFormTagelohnauftraege.NextDBGrid1CustomDrawCell(Sender: TObject;
  ACol, ARow: Integer; CellRect: TRect; CellState: TCellState);
var Image : TImage;
    Foto  : string;
begin
  if ACol=28 then begin
    Image := TImage.Create(Self);
    try
      Foto := Bilderpfad + '\' + MySQL_DataModule.QueryTG.FieldByName('DATEINAME_FOTO1').AsString;
      Image.Picture.LoadFromFile(Foto);
      NextDBGrid1.Canvas.StretchDraw(CellRect, Image.Picture.Graphic);
    finally
      Image.Free;
    end;
  end;
end;

I've solved it this way now. But I don't know if this is the recommended or correct way...