Darian Miller
It is highly likely that most Delphi programmers already have some code in the toolbox for launching applications on Windows. I know that I have written a few different utility functions myself over the years…. – Details…
1 month ago in Delphi Programming, example code0
Darian Miller
GitHub Actions is a powerful automation tool first introduced by GitHub back in 2018 and has significantly matured over the last few years. It can be leveraged to automate workflows based on events and is… – Details…
10 months ago in Delphi Programming, example code0
Darian Miller
I imagine most Delphi developers have written code similar to the following to quickly test a block of code using the Now function: procedure TDemoExecutionProfilerForm.DoSomeComplexCode; var StartTime:TDateTime; DebugMessage:String; begin StartTime :… – Details…
10 months ago in Delphi Programming, example code0
Darian Miller
I was speaking with a colleague the other day who was working on a project which relied on the popular Delphi component trio: TRESTClient, TRESTRequest and TRESTResponse. He wanted to add a progress event but… – Details…
1 year ago in Delphi Programming, example code0
Darian Miller
TLDR; for 32-bit applications add this line to your DPR: {$SETPEOPTFLAGS $140} for 64-bit applications use: {$SETPEOPTFLAGS $160} {$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE} or, if you do not have WinAPI.Windows in your uses list to support using con… – Details…
1 year ago in Delphi Programming, example code0