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
0
votes
2 answers

Delphi & Absolute database : Delete Query

Why is it that my query does not work ? Form1.ABSQuery1.Close; Form1.ABSQuery1.SQL.Clear; Form1.ABSQuery1.SQL.Text:='DELETE FROM LOG WHERE status = ''YES'' and DATE BETWEEN :d1 and :d2'; Form1.ABSQuery1.Params.ParamByName('d1').Value…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

sqlite3 delete on cascade with Delphi XE Zeosdb Tztable

I have two tables Client , Commande The DDL in sqlite3 is the following , CREATE TABLE Client ( id_client INT NOT NULL, nom varchar(10), PRIMARY KEY ( id_client ) ); CREATE TABLE Commande ( id_commande …
Bessoufi Mounir
  • 1,368
  • 1
  • 8
  • 7
0
votes
2 answers

Draw an image instead of window caption

I need to do something which seems to be easy, but I'm searching for days with no success. I have a window of fixed size (say 500*250) and need to replace the whole caption bar with a fixed size JPEG (or better PNG) image (say 500*25). There are…
Delphi.Boy
  • 1,199
  • 4
  • 17
  • 38
0
votes
2 answers

Change treeview item text (Delphi XE)

I am using delphi xe I want to change text of treeview node at runtime which has been circled in screen shot. I am using the code below to change it TreeView1.Items[2].Item[6].Text:='Some Text'; But getting the error below List index out of…
Khawar
  • 33
  • 1
  • 6
0
votes
2 answers

Delphi XE3: DBLookupCombo Dropdown side effect

We are porting a D6 application to XE3. In D6 I inherited a complex code which used shared datasets and datasources everywhere. This worked well in D6. After we could run the XE3 version, we experienced that lookup combo boxes changed. On dropdown…
durumdara
  • 3,411
  • 4
  • 43
  • 71
0
votes
1 answer

RegisterMethodInfo and RegisterParamInfo from Delphi XE synonyms in Delphi 2006

my problem is the following. I have a web service that i have to call, but it contains complex types that Delphi 2006 does not recognize. I tried to import the wsdl through delphi xe and it did a good job. The problem is that I have to use this in…
dzibul
  • 612
  • 2
  • 7
  • 20
0
votes
0 answers

Is there any key differences between Delphi 2010's compiler and Delphi XE that could cause an EOS Error Code: 1158

As the question suggests I have an app that I can run perfectly fine after building under Delphi 2010, however if its compiled under Delphi XE I get the error: Project xyz.exe raised exception class EOSError with message 'System Error. Code 1158.…
Scott Alexander
  • 455
  • 2
  • 17
0
votes
2 answers

Delphi - move control to the ancestor form

I have more than 50 forms which have the same button on them. All of them are derived from the same ancestor. Is there any automatically way to move that button(or any other control) to the common ancestor?
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
0 answers

How to send mail using indy component in delphi xe2?

First i have this code and i tried with Gmail Smtp server but i have the result with error exception : Socket °10060 !!!! it a delay socket error , please if any one tried this before and it work for him just share the idea with me thanks !!!! …
Oussaki
  • 1,449
  • 2
  • 21
  • 30
0
votes
2 answers

What replaces ToolServices.GetUnitCount?

I am trying to revive and compile some old sources under XE2. There's routine that uses 'ToolServices.GetUnitCount' which is defined in ExptIntf.pas (which is deprecated) as ToolServices: TIToolServices = nil; And, TIToolServices is defined in…
Adem
  • 265
  • 3
  • 10
0
votes
1 answer

Hotel prices spanning multiple dates issue

Question is somehow related to this one, with the exception that I use parameters. I have this on my button click : procedure TForm1.Button1Click(Sender: TObject); begin with ABSQuery1 do…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

EMS Advanced Data Export VCL - export to Excel with custom field names

I cant seem to figure this one out. Exporting data to Excel works OK but I do not want to use the original table field names but ones of my choice. Right now, the original field names get exported (with the data,of course). QExport4XLS1 is linked…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
2 answers

Prevent date mismatch

I am using cxGrid in which I have two date fields (start_date and end_date) which get its results from a query. I am trying to prevent user from entering wrong date span when entering data in the grid. I am trying to prevent user from entering…
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
1 answer

[DCC Fatal Error]: F2051 Unit ApFileIO was compiled with a different version of ***.{ApCollections}TLinkList

I have seen similar questions and I've examined them but I didn't solve any problem. I have all the sources and the error is about two units I've written myself and they are both in the main directory of my app. I've been having the problem since I…
Javid
  • 2,755
  • 2
  • 33
  • 60
0
votes
1 answer

Display how many days since last visit

I have a query that displays hotel guests stay data (START_DATE,END_DATE). I would like a label to display how many days passed since guests last visit relative to today. So,example, if guest left on the 29.3.2013 and I view the data, I would like…
user763539
  • 3,509
  • 6
  • 44
  • 103