Questions tagged [delphi-xe2]

Delphi XE2 is a specific version of Delphi. Delphi XE2 was released on September 1, 2011 and is available as a standalone product or as part of RAD Studio XE2.

Delphi XE2 is a specific version of released on September 1, 2011.

Notable new features of Delphi XE2 are:

  • Support for 64 bit applications (on Windows only);
  • Inclusion of a new framework called that allows for cross platform development;
  • Cross platform development for Mac OS X and iOS(*) (in addition to Windows);
  • Live bindings, a new data binding concept for VCL and FireMonkey that supersedes data-awareness of controls.

*iOS projects require an extra development step using Xcode and the Free Pascal compiler on a Mac, but do deliver native iOS code.

Delphi XE2 was preceded by .

Always use the tag alongside this tag.

2598 questions
2
votes
5 answers

Suggestions for replacing the current exe

I need to do a quick and dirty way of upgrading my application. Currently I have an exe per every release. If exe is wrong i flash a message "relase X found on db, you are using exe for release Y, please download the correct vetsion". I have every…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
1 answer

Is there a demo for TeeChart 2012 Standard or Professional that compiles out of the box with a full installed non-trial version of TeeChart?

TeeChart 2012 for Delphi, includes many demos, but the first one I thought I'd try is the features\tee9new.dpr demo, a monster of a demo which appears to be hard-coded to contain over 200 unit references to units that only ship in the high-end…
Warren P
  • 65,725
  • 40
  • 181
  • 316
2
votes
2 answers

Indy and smtps: cannot connect

I am trying to send emails from smtps (secure smtp) using Indy and the technique exaplined in this Marco Cantù article. This is what I am using: object SMTP: TIdSMTP IOHandler = IdSSLIOHandlerSocketOpenSSL1 SASLMechanisms = <> UseTLS =…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
1 answer

Paradox to Delphi

I have a legacy Paradox application that has been running successfully for almost 20 years using the Borland Database Engine. Data is entered into the main program by many different order takers, who then daily put the data onto a memory stick for…
Dennis J
  • 21
  • 3
2
votes
2 answers

How to set HostName of Server on Firebrid Client using Delphi XE2

I have developed a client/server application using a firebird db and Delphi XE2. The problem is that the TSQLConnection component on the client automatically sets the HostName propery to localhost. I would like to know, how can I write code that…
Japster
  • 985
  • 6
  • 19
  • 38
2
votes
1 answer

Which are the good Cocoa API ports for Delphi

Are there any good Cocoa API port for Delphi. I know JCL has a good Windows API port for Delphi but it seems I miss which is the best port of Cocoa API.
Gad D Lord
  • 6,620
  • 12
  • 60
  • 106
2
votes
1 answer

How to add my own items in the Delphi Options dialog

How do I add my own items to the Delphi Options dialog (Tools\Options)? For example, see the Project JEDI options. For example it is necessary for me that there there was my bookmark with options of compilation for mine a component and new…
Gu.
  • 1,947
  • 4
  • 30
  • 49
2
votes
2 answers

what causes this error 'Unable to write to application file.ini'

My application is build in delphi and it runs perfect on other platforms except Windows 7 64bit machine. Each and everytime try to close the application is giving me this error 'Unable to write to application file.ini' here is my code for…
user1484977
  • 21
  • 1
  • 3
2
votes
0 answers

Libraries / packages proper managing - setting paths

I have a bunch of custom packages which I have in one group project. For couple of hours I'm trying to set search/output paths properly. But even if compiled sources are in some path - it's not visible to other package (which needs it). Required…
JustMe
  • 2,329
  • 3
  • 23
  • 43
2
votes
1 answer

How to install OmniXml for Delphi Xe2/ OExport XLSX/ODS native Delphi/Lazarus import/export library

I know this might be a simple question but i searched the internet and couldn't find an answer. I am trying to install OExport - XLSX/ODS native Delphi/Lazarus import/export library http://www.kluug.at/xlsx-ods-delphi.php , but in order to install…
Cristian Vasuica
  • 369
  • 9
  • 22
2
votes
1 answer

delphi xe2 implementing wcf made in .net and support callback

I made a simple .NET WCF wsDualHttpBinding that does callback to client. Now I am trying to make a simple delphi console application that implements my wcf service. Here is the code that wsdl soap 1.2 generated for me in delphi I think what I need…
Dmitry Savy
  • 1,067
  • 8
  • 22
2
votes
1 answer

Extracting images from zip into memory delphi

I'm wanting to extract a zip file loaded with images into memory in some way. I don't really care what type of stream they go into, as long as I can load them afterwards. I do not have that great of an understanding with streams, and explanations on…
Larmos
  • 23
  • 1
  • 6
2
votes
2 answers

How to implement IDispatch methods?

I have played with a third-party library that is accessed with a COM interface. For some tests, I have created the main form as: TForm1 = class (TForm, IThirdParyCOMInterface) TForm1 implements all methods of IThirdParyCOMInterface, and I get the…
Holgerwa
  • 3,430
  • 9
  • 42
  • 50
2
votes
1 answer

put designer window in background

This is annoying ... In Delphi 7 when you clicked on the code window the form would automatically hide. Now it stays on top. I have to minimize it to remove it from focus. Are there any settings that correct this behaviour ? Also I must play hide…
user763539
  • 3,509
  • 6
  • 44
  • 103
2
votes
3 answers

Delphi XE2 incompatible types pointer and PAnsiChar

I am compiling my application in Delphi XE2.It was developed in delphi 7.. My code is as follows: type Name = array[0..100] of PChar; PName = ^Name; var HEnt: pHostEnt; HName: PName; WSAData: TWSAData; i: Integer; begin Result :=…
poonam
  • 748
  • 4
  • 19
  • 40