1,500 questions
0 votes
0 answers
181 views
Delphi TZipMaster no longer encrypting zip files on Windows 11
I have an old Delphi XE project that creates password-protected zip files using the TZipMaster component. It always worked before. Now, after moving to Windows 11 and installing the latest version of ...
0 votes
0 answers
47 views
Make query by ADO in Delphi with two servers?
In Delphi XE I use ADO and SQL Server databases. I have two almost identical databases in two different servers. The tables in the first server are being updated and inserting new rows. The tables in ...
0 votes
0 answers
44 views
Embarcadero Delphi IDE signature
is there a signature or identification written by IDE software (let say embarcadero Delphi) to the complied android apk or aab file ? And how I know it? I have decompile the apk or aab android file ...
0 votes
2 answers
305 views
Creating a custom time edit box in Delphi
I'm trying to make a simple edit component that accepts 24h time format with autocorrection to the needed format which is HH:MM. and my approach as follow: procedure TForm1.Edit1KeyPress(Sender: ...
0 votes
1 answer
509 views
Make Delphi XE application DPI-unaware
I just created a new application in Delphi and even though other applications written the same way, this new application does not get automatically scaled by Windows. All applications have exactly the ...
0 votes
1 answer
178 views
How can I save an INTACustomDockableForm window position in Delphi layout
The INTACustomDockableForm interface includes two methods: one for saving the window state and another for loading it. I have implemented them as follows: ... procedure TMyDockableForm.SaveWindowState(...
1 vote
0 answers
67 views
Post persian character value with delphi TREST component
I send a post request with Delphi TREST component with parameter value as Persian characters: Request.Method := rmPost; Request.Parameter.Name := 'ChangeLog'; Request.Parameter.Value:= 'توضیحات نسخه'; ...
0 votes
1 answer
77 views
Color property in TInplaceEdit not working
The following code to change the background color of TInplaceEdit works in Delphi 2010 but does not work in Delphi 11 Community Edition. However the CharCase does work. I looked at many samples ...
2 votes
1 answer
170 views
How to dynamically collect array of const in Delphi?
What if I have a dynamic array and want to pass it to a function as an open array argument? procedure DoThis(const Args: array of const); procedure DoThat(const Values: TArray<String>); begin ...
1 vote
1 answer
327 views
How to make the TCheckBox's box area bigger?
I have a TCheckBox with a Font.Size of 40, Width is 400 and Height is 100. The box where the check is drawn is too small and I want it to be bigger. I played around with its property and I can't seem ...
0 votes
1 answer
175 views
How to override TTabControl OnKeyDown?
I have a TTabControl on a form, and I would like that if the tabs (tab header) is focused, and when the user presses Ctrl+RightArrow, it will focus on the right-most tab. Sadly, TTabControl doesn't ...
0 votes
1 answer
144 views
Slow emailing with Indy
After upgrade from Delphi 10.4 to 11.3 I got a strange problem with attachments in emails. Send email from file directly from server where exe-file is running is fast Send two attachments of 300 KB ...
0 votes
1 answer
60 views
I can't use Teechart. Installation failed
I'm having a problem using TeeChart W64 in Delphi Tokyo. It always shows this error on the first launch of Delpho after installation. For installation I am using the file TeeChartVCLFMX-2023.38-...
0 votes
1 answer
187 views
Trunc in delphi
I am trying to separate currency number into two separate integer, var StrNum: string; CurDecimalNum: currency; Amount : currency; begin Amount := 1868.45; StrNum := FormatFloat('00', ...
0 votes
1 answer
423 views
What API to grab windows process status?
I need to write a small application to monitor the status of a Windows process using Delphi or C++. A call that will show me Process Status, particularly when the status is 'not responding'. What ...