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
1
vote
2 answers

Please explain package use

Please explain package use (in short sentences with small words (for Dummies)). I just moved from D7 to XE2 and packages seem much more prevelant, and I seem to need to qualify a lot more things. In D7 I would say uses windows and now I must say…
Mawg says reinstate Monica
  • 38,334
  • 103
  • 306
  • 551
1
vote
1 answer

Using Turbopower XML Partner with Delphi XE 2

We are trying to migrate our Delphi Environement from Delphi2007 to Delphi XE2. We dowloaded the latest Turbopower xml partner from Sourceforge. net. When we make a simple test to load a xml file we get an error "Invalid XML Character found" Our…
SK9
  • 87
  • 11
1
vote
1 answer

Update IntraWeb 12 in Delphi XE2

I performed the update IntraWeb 12.1.18 in Delphi-XE2, but he asked me the license number of iw ... Is this normal? update for those interested : Execute Delphi "Install, Repare and Remove" tool (or run the .iso with latest update pack) Uncheck…
Darkendorf
  • 463
  • 11
  • 28
1
vote
1 answer

Delphi XE2 TPointerList usage

I have a following problem trying to compile some components in XE2. These components were not prepared for XE2, but I'm trying to compile them anyway. Within a component it is declared like FList : TList; when used it is for example…
Sofija
  • 713
  • 11
  • 14
1
vote
2 answers

How to check if the PNG image loaded into FMX.TBitmap has an alpha channel?

I'm loading PNG images into FMX.Type.TBitmap in Delphi-XE2 Update3 FireMonkey HD application. How do I check if loaded PNG image has an alpha channel or not? Currently if I load an image with an alpha channel it has alpha info in…
Kromster
  • 7,181
  • 7
  • 63
  • 111
1
vote
1 answer

Delphi String Search From File

I have an application having 3 Forms (TForm1, TForm2, TForm3). I need the code for the following : On TForm1.BitBtn Click "10.220.70.32 BSNLESDP25A" and "10.220.70.33 BSNLESDP25B" will be searched from "host" file located in…
Koushik Halder
  • 445
  • 1
  • 9
  • 15
1
vote
2 answers

DLL registration with regsvr32.exe freezes when unit HtmlHelpViewer is used in Delphi XE or Delphi XE2

DLL registration with regsvr32.exe freezes when unit HtmlHelpViewer is used in DLL sources in Delphi XE or Delphi XE2 Update 3. Just add the unit to interface uses list. The main project (that uses DLL) freezes on exit too. How to fix the…
Dmitry
  • 14,306
  • 23
  • 105
  • 189
1
vote
1 answer

What are the Delphi XE2 VCL Runtime BPLs?

The old Delphi 7, uncheck runtime packages and build all trick doesn't seem to work anymore so I can't restore whatever would be a good set of runtime BPL's for my Delphi project. I've got a problem, which I will probably ask another question about…
Peter Turner
  • 11,199
  • 10
  • 68
  • 109
1
vote
1 answer

Using GDI+ in Delphi XE

The following works in Delphi XE2 but throws an access violation in Delphi XE: uses GDIPAPI, GDIPOBJ; ... TGPImage.Create (TStreamAdapter.Create (MemStream)); // throws AV How can I use GDI+ in Delphi XE?
jpfollenius
  • 16,456
  • 10
  • 90
  • 156
1
vote
2 answers

Why does the Delphi XE2 IDE crash in msimg32.dll?

After installation of the Update 3 for Delphi XE2 I get the following error and the IDE does not want to start. I tried installing the standard Delphi XE2 with Update 1 and the problem persists. Do you have any idea what is causing this?
Pateman
  • 2,727
  • 3
  • 28
  • 43
1
vote
1 answer

AVI Resource Playing

I have a Form "TForm1" having one "TAnimate1". I have one AVI Resource as File Name "Animate 01.avi" with Resource Identifier "AVI" and one "Animated Cursor" as File Name "Cursor 01.ani" with Resource Identifier "8". I wish to play "Animate 01.avi"…
Koushik Halder
  • 445
  • 1
  • 9
  • 15
1
vote
3 answers

Delphi XE2: Convert a ASM method for Win64 platform

When I attempt to compile a pascal unit for Win64 platform, I encounter errors. The methods contain ASM block. I have no ideas how to make it works for Win64 platform: Method 1: Function TSparseList.ForAll( ApplyFunction: Pointer {TSPAApply} ):…
Chau Chee Yang
  • 18,422
  • 16
  • 68
  • 132
1
vote
3 answers

order List with criteria choose to runtime

if i have a generics list with more field for example: PMyList = record Field1, Field2, ... FieldN : Integer; end; TMyList = List; For order the list with criteria choose to runtime (for example: field2 then field2, or: field3 then…
Marcello Impastato
  • 2,263
  • 5
  • 30
  • 52
1
vote
2 answers

How to store an identifier in a ListView a client connection - Indy 10

I am creating a TCP server which receives multiple clients and must be able to send messages to each. How do I get a handle to the client connection and then send arbitrary data? Thanks: D Code: procedure TFRM_Main.ServerConnect(AContext:…
Jhonjhon_123
  • 288
  • 3
  • 12
1
vote
1 answer

List and BinarySearch index not every correct

i have some problem again about list and binarysearch. In general, i have: type TMyArr = array [1..5] of Integer; PMyList = record Comb: TMyArr; ... // other fields end; TMyList = TList; var MyArr: TMyArr; …
Marcello Impastato
  • 2,263
  • 5
  • 30
  • 52