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
1 answer

Dynamic package linking - using program unit in dynamic package

I wrote a small component which dynamically loads a package on run-time. So I've got some group project with my main project (exe) and some packages (bpl). Now I want to use in all of them the unit from my exe (Datamod.pas). So in some unit's uses…
JustMe
  • 2,329
  • 3
  • 23
  • 43
0
votes
3 answers

Exception ENonAIRException when installing custom package

I have a custom package (which is using FibPlus and IBExpress). Package builds ok, but when trying to install it it gives me this exception : Exception ENonAIRException. Does anyone know something about it? What it generates it? LE: found…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
2 answers

How do I make my changes to XML-related source files take effect?

I want to make changes to the xmldom and XMLDoc files. I tried to, but I don't know how to test those changes because the program does not seem to be running the code in those files. I tried using a ShowMessage to see if that code was being accessed…
Trevor
  • 16,080
  • 9
  • 52
  • 83
0
votes
2 answers

Access violation at address 003B0E8E in module 'MpLib.dll'. Read of address 00120BF4

I've searched around Stackoverflow for the issue I was having, but they were all very specific for that particular access violation. The piece of code I believe I am having trouble with is a function called MpqExtractFile, stored in a DLL.…
ple103
  • 2,080
  • 6
  • 35
  • 50
0
votes
1 answer

procedure _ftol2_sse being called after update to Delphi XE?

In our program we are using a web service to pull back data from a third party into our program. Ever since we updated to Delphi XE from Delphi 2009, Windows server 2003 users are receiving the following error message when making a SOAP call to the…
Trevor
  • 16,080
  • 9
  • 52
  • 83
0
votes
1 answer

Filling a RichEdit from an external procedure

I have written a procedure that fills a RichEdit component depending on the input. procedure LoadCPData(ResName: String); begin ResName := AnsiLowercase(ResName) + '_data'; rs := TResourceStream.Create(hInstance, ResName, RT_RCDATA); try …
ple103
  • 2,080
  • 6
  • 35
  • 50
0
votes
1 answer

How can I modify the text of a data base field on DrawCell? TcxGrid

Previously with the default DBGrid I could alter the value of a cell without altering the data in a database with the following code. procedure TEMRForm.DBGridCDrawColumnCell(Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumn;…
Trevor
  • 16,080
  • 9
  • 52
  • 83
0
votes
1 answer

Force closing a server COM which have already active reference

I built a program using cBuilder, with an oleAuto interface to allow some client to make some simple query to the server com. I want to close the server when for some reason ( ex. the db connection is lost ) something is wrong and a I need to…
enzo1959
  • 409
  • 2
  • 5
  • 13
0
votes
2 answers

Delphi - TUpdateObject versus OnUpdateRecord for a join SQL statement

I have a pFibdataset(which is working similar to BDEDataset) in which I need to make the following join selection select table.Name as name, table1.Name as name_1, table2.Name as name_2 from table left join table table_1 on…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
1 answer

Why am I sometimes getting files filled with zeros at their end after being downloaded?

I'm developing a download manager using Indy and Delphi XE (The application uses Multithreading to attempt several connections to the server). Everything works fine but sometimes the final downloaded file is broken and when I check downloaded temp…
Javid
  • 2,755
  • 2
  • 33
  • 60
0
votes
1 answer

Delphi Datasnap Server User Authentication

We are developing a new, and our first, DataSnap server and client apps. I have added authentication to the server but I cannot dynamically change the login details for the connection from the client. The User and Password in the procedure…
Pieter van Wyk
  • 2,316
  • 9
  • 48
  • 65
0
votes
1 answer

add memo contents to database

Got a cxmemo1 that I need to add its contents to database. Right now all I add is the first line: ABSQuery1.Params.ParamByName('A2').VALUE := CXMEMO1.text; I know I need to modify this line but how ? I want all lines in the memo to be entered.
user763539
  • 3,509
  • 6
  • 44
  • 103
0
votes
3 answers

Delphi XE - localization in an existing application

I need to modify an existing application in order to have multilanguage support. This means that with the same database(Firebird) in an english version, my client want to sale the application in China. Application was written in Delphi 7, and the…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
1 answer

Call MATLAB function with string parameters from Delphi XE using OLE

I'm trying to call a MATLAB function from Delphi XE using an OLE object. The function has two string parameters. When I try the MATLAB code in MATLAB (2008a) itself, it is all OK, but for some reason I cannot get the input parameters to MATLAB from…
deColaman
  • 213
  • 2
  • 14
0
votes
1 answer

Charset inside Javascript from dynamic page in Delphi

I'm generating dynamic HTML inside Delphi. I have no problem displaying UTF-8 strings inside the webpage body. I use HTMLEscape to encode regular strings (all the strings inside the string list are previously escaped). The problem occurs inside the…
Miguel E
  • 1,316
  • 2
  • 17
  • 39