Questions tagged [delphi-xe]

Delphi XE is a specific version of Delphi. Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD Studio XE.

Delphi XE is a specific version of Delphi.

Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD (rapid application development) Studio XE.

Delphi XE code name is Fulcrum, compiler version 22, directive symbol VER220.

Speculation about Delphi XE prior to its release often referred to this release as Delphi 2011.

Delphi XE was preceded by Delphi 2010 and succeeded by Delphi-XE2

1495 questions
-1
votes
2 answers

Delphi Firemonkey LockBox3 AES-CBC, PC and Android result are different?

I need a AES library for devolop Firemonkey Moblie App. I tested ElAES and LockBox3, everything works fine complie to PC, But on FMX Android both library return wrong ciphertext. Test Data (AES128CBC PKCS5Padding): plainText: 'plainText' -…
86153
  • 1
-1
votes
1 answer

TIpTCPServer and Client in one application

I make an application where the client and the server are in the same program. I use Delphi XE7 and components TIpTCPServer / ... Client. But when I try to close the server with the client connected (in the same window), the program stops…
nup
  • 346
  • 2
  • 13
-1
votes
1 answer

how to return TByteDynArray in SqlServerMethod DataSnap Server

I have a DataSnap Server with a Server method like this: function TServerMethods1.Get_Excel_History(key: string): TByteDynArray; Now, on the DataSnap Client using TSQLServerMethod, I successfully connect to the server in Design Mode, and I'm…
Jose M
  • 43
  • 1
  • 1
  • 6
-1
votes
3 answers

Difference between LongWord and Cardinal in Delphi XE?

This code doesn't compile in XE : const InitSignature : array[0..3] of LongWord = ($67452301, $EFCDAB89, $98BADCFE, $10325476); [DCC Error]: E2026 Constant expression expected but this DOES: const InitSignature : array[0..3] of…
dwrbudr
  • 607
  • 4
  • 8
-1
votes
1 answer

Change Assembler code to Delphi

I need to compile an application that I have of 32Bist in 64Bist, but according to what I have read I can not have ASM code in 64Bist, that I must replace it with Pascal Puro. You can help me with a guide for this, I have no knowledge in ASM! asm …
alejobog
  • 21
  • 8
-1
votes
1 answer

How to Post to HTML Form two with Delphi Indy

I want to Post with Delphi XE10 Indy to Form 2 (name="voting_maybe") in following HTML code.
-1
votes
1 answer

Am I able to use a logic function (and, or) between 2 comparisons

I am unsure whether it is generally impossible to use a logic function between to comparisons or if I've used my logic statement incorrectly because when I make all variables (NewUsername, NewUsername2, NewPass, NewPass2) to the characters "hi", it…
user9155061
-1
votes
1 answer

Preemptive authorization in Delphi with Indy or Soap

I would like to make a preemptive authorization to a server, but I cannot find any solution for this in Delphi. Please share your solution if You have one. HTTP/1.1 401 Authorization Required …
-1
votes
1 answer

Delphi Comport not getting the complete Data

I have this code: procedure Tfrm_main.cport_scanningRxChar(Sender: TObject; Count: Integer); begin cport_scanning.ReadStr(data, Count); memo3.Text := data; end; The actual result is: memo3.text := M000000; Then it changed into: memo3.text :=…
-1
votes
3 answers

Firemonkey SpeedButton / Button

In Firemonkey, what's the "MAGIC" to make the buttons looks like below? For me, most important is the size of the image and the layout of the text inside the button, but how to do this in firemonkey? What properties i have to confuigure? This was…
Linces Marques
  • 644
  • 1
  • 10
  • 24
-1
votes
1 answer

FTP file download using Delphi IdFTP

I am new to delphi, I need to write an ftp client program that will go through a text file with list of ftp addresses, and download the subfolders from an ftp site . I have successfully hooked to the server but got stuck on the download part. can…
Ifeanyi
  • 77
  • 1
  • 8
-1
votes
1 answer

can't connect LocalData Adapters to Schemas

This is My Situation I have a Service Named BaseDataService, in here I create a LocalDataAdapter that I'm gonna use to connect to a specific service called DataBaseLayer. The service I'm trying to connect contains the schemas that have all…
Jp191290
  • 51
  • 8
-1
votes
1 answer

Indy 10 raising an unwanted exception

I have a client/server app developed in delphi XE that uses TIdTcpClient (Indy10) to communicate to each other. All works fine most the time, the only issue is when I kill the server side the client is raising an exception that somehow raises all…
Icaro
  • 14,585
  • 6
  • 60
  • 75
-1
votes
1 answer

Where's the word wrap setting for the editor in Delphi XE?

Where's the word wrap setting for the editor in Delphi XE? I can't find it in Tools -> Options -> Editor Options.
Tony_Henrich
  • 42,411
  • 75
  • 239
  • 374
-1
votes
2 answers

Getting the name of newly created components at run time

Essentially, I want a user to add comments in the form of labels. I have implemented this no problem, but I want the user to be able to delete the newly created labels. comment := TLabel.Create(Self); comment.Parent := Form1; I want to add…
gweno10
  • 365
  • 1
  • 5
  • 16