Jump to content


Maik2

Member Since 21 Mar 2025
Offline Last Active Feb 08 2026 03:32 PM
-----

Posts I've Made

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...


In Topic: How can I draw a line in the slides?

20 April 2025 - 12:12 AM

Thanks Boki,
 
Yes, that's working for me for now.
However, it would be more practical to be able to create custom drawings per slide rather than just at the cell level.
 
Happy Easter and greetings, Maik

In Topic: Coloring the NxDBProgressColumn depending on the corresponding column value

20 April 2025 - 12:08 AM

Thanks Boki,
 
I'm looking forward to the new version with its many more great features.
 
Happy Easter and greetings, Maik