How to make an old form inherit from another?
I have an existing form and i want this form now, to inherit from another form.
How to make an old form inherit from another?
I have an existing form and i want this form now, to inherit from another form.
Converting ticks to a TDatetime in Delphi
In a Delphi (11.3) VCL program, I’m using a method to convert 63856301629552021
ticks to a TDateTime
. I know Delphi works with a TDateTime
from 12/30/1899
and I tried using TimeSpan := TTimeSpan.FromTicks(Ticks);
, but without any success.
Here’s the function I’m calling:
Convert multiple single page TIFF files into one multi-page TIFF using Delphi VCL
In a Delphi (11.3) VCL program, I’m trying to create a multi-page TIFF file from individual TIFF pages. At first, I was able to successfully combine all the individual TIFF’s into one TIFF, but the pages just overlayed each other, and it was only 1 page. I want to output 1 TIFF with more than one page. So the output file path is valid and writable and the file is not locked by another user. Here’s the code:
Delphi 11 property with &?
In a class definition, I have the following code :
Forcing TDownloadURL.DownloadRawBytes to skip string conversion when no ContentType Header
I’m trying to use TDownloadURL.DownloadRawBytes from the Rest.Client unit to download a PDF file from an Amazon S3 bucket.