Questions tagged [delphi-11-alexandria]
311 questions
3
votes
1 answer
I can't migrate an Android project from Delphi 10.4 to Delphi 11.1
Please help if you have any idea of the following error when I try to compile my Android project completed in Delphi 10.4 after I install Delphi 11.1:
[PAClient Error] Error: E7688 Unable to execute '"C:\Program…

mesutuk
- 402
- 3
- 17
3
votes
1 answer
What DLLs do I need for Delphi to run WebView2
I'm running WebView2 in my Delphi 11.1 application.
On my dev machine (Win 11), it works normally. It works on test PC1(Win 10), but when I try running it on the other PC (also Win 10) it doesn't load the page.
All PCs have Microsoft Edge WebView2…

Smilko
- 43
- 7
3
votes
0 answers
Delphi 11 Form Designer Scaling
I just downloaded and installed a Trial of Rad Studio 11 on a Lenovo Yoga 720 with 16GB of RAM running Win 10 Pro. The laptop supports 4K resolution.
Forms designed in the IDE do not display the same when the application is run with a per Monitor v2…

Terry Thompson
- 489
- 2
- 15
3
votes
1 answer
Building windows store application in Delphi 11 failing
I'm trying to build an Ad Hoc Windows Store application in Delphi 11 (MSIX), but I'm getting an error when I try to build the MSIX file.
[PAClient Error] Error: E5128 MakeAppx : error: Error info: error C00CE169: App manifest validation error: The…

Alister
- 6,527
- 4
- 46
- 70
3
votes
1 answer
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.
For a new form i know how to do this, just go on File > New > Other > Inheritable items and select the father form. But what about an already existent form ?
Here is…

delphirules
- 6,443
- 17
- 59
- 108
3
votes
2 answers
Can't register any component in Delphi 11
I have a problem with Delphi 11. I can't register any of my components, I get the attached error when i right click on the package and select Install
unit MyNewComponent;
interface
uses
System.Classes,
FMX.Objects;
type
TMyComp =…

Ole Mortensen
- 105
- 5
3
votes
1 answer
How do I change the deployment path for Linux?
Using Delphi 11 Alexandria on a Windows 10 PC. I am deploying to a Cloud "Linux" server. This works, but the path it uses on Linux is too convoluted and not what I want.
The DocWiki tells me to change the Remote Machine Information in the…

Rohit Gupta
- 4,022
- 20
- 31
- 41
3
votes
0 answers
Error publishing Delphi 11 Android Application to the Google Play Store: "Your Android App Bundle is signed with the wrong key."
I developed an Android application with RAD Studio 11, and generated the .aab file to import to the Google Play store.
When importing the .aab file, I have the following error:
Your Android App Bundle is signed with the wrong key. Ensure that your…

TIgrine nacer
- 41
- 3
2
votes
1 answer
Highlight Cell in FMX.TCalendar based off dates
I have seen this post about how to highlight the cell but I cant find a DRAW in the source for FMX.TCalendar:
is there a way to highlight cell/s in a TCalendar?
What I am wanting to do is to be able to change all backgrounds to grey where date <…

Glen Morse
- 2,437
- 8
- 51
- 102
2
votes
3 answers
Class fields not shared between descendants
Can I declare a field as static on every descendant class instead of sharing its value for all of them ?
This is the base class:
type
TKpModelViewControllerEntity = class(TInterfacedObject, IKpEntity)
protected
class var ResourceName:…

Marc Guillot
- 6,090
- 1
- 15
- 42
2
votes
1 answer
How to find FMX TSearchBox
I have a multi-device FMX project in Delphi 11. I would like to add a search box to a form, but I cannot find a TSearchBox component in the tool palette. The docs confirm that a TSearchBox component exists. I'm using the WedgewoodLight style (from…

David U
- 943
- 1
- 8
- 22
2
votes
1 answer
Getting progress of stored procedure
I have a long running stored procedure, executed in a thread (via TADOStoredProc) to ensure that the application remains responsive.
There are a number of RAISERROR() WITH NOWAIT statements in the stored procedure so I can monitor progress while…

Keith Miller
- 1,718
- 1
- 13
- 22
2
votes
3 answers
Delphi 11.3 - Unable to create/Add JSONs from variant
I am migrating some projects from Delphi 10.4 to Delphi 11.3.
I am facing some problems with the JSON library:
See the following codes:
First case:
function TestCreate;
var
LValue: Variant;
LJSON: TJSONNumber;
begin
LValue := 100;
LJSON :=…

Federico Pessina
- 199
- 1
- 4
- 15
2
votes
2 answers
64-bit objects no longer initialized to nil?
I just noticed this:
function DataTransfer(...parameters...) : boolean;
var
LTestQuery, LUpdateQuery: TFDQuery;
begin
Right at the start of the procedure:
In 32-bit (Delphi Alexandria 11.1) local variables `` etc. are nil
In 64-bit (Delphi…

Jan Doggen
- 8,799
- 13
- 70
- 144
2
votes
0 answers
Inserting a row to Dataset has unsual delay at Delphi Alexandria 11.1 when load a big lookup Fields
Recently i have completed the migration of my company's project, from Delphi XE7 to Alexandria 11.1. After a couple of releases, some customers with bigger databases complained for delays at opening my most used form. I have started to research the…

stmpakir
- 319
- 2
- 10