Questions tagged [delphi-xe3]

Delphi XE3 is a specific version of Delphi released on Sept. 2012

Delphi XE3 was released in September 2012 and is available as a standalone product or as part of RAD Studio XE3.

Delphi XE3 codename is WaterDragon, compiler version 24, directive symbol VER240.

Delphi XE3 was preceded by Delphi XE2 and succeeded by Delphi XE4.

Always use the tag alongside this tag.

666 questions
0
votes
2 answers

Copy & Copy does not work correctly with stringlist

i got a big xml file and i want to save each id, source & target in a stringlist to generate after successfull import to stringlists build a query to mysql. heres a snippet of my xml: xliff version="1.1">
Hidden
  • 3,598
  • 4
  • 34
  • 57
0
votes
2 answers

Delphi, chromium, tabs and flash trouble

So I have this project in which I need to have few tabs (TPageControl) with flash pages running and grab a screenshot of them from time to time without switching active tab. First I tried TChromiumOSR but the flash is not visible in it, kind of…
laggyluk
  • 195
  • 2
  • 14
0
votes
1 answer

DelphiXE3 and invalid generic typecast

Delphi2010 compiles my TObjectListEnumerator class without error, but DelphiXE3 gives compiler error: E2089: Invalid typecast What is wrong with this? TObjectListEnumerator = class private fList : TObjectList; …
pKarelian
  • 263
  • 1
  • 8
  • 14
0
votes
1 answer

Delphi XE3 third party VCL components in the XE4?

I use Delphi XE3 and I want to migrate to the Delphi XE4. Can I use the same third party components as I used in XE3 in XE4? In previous versions happened many changes, which precluded the use of previous versions of third party components.
0
votes
0 answers

How can I get handle of app active window inside DLL function?

Inside DLL function I need handle to app active window. The same GetActiveWindow() called from DLL function doesn't always return correct handle. Sometimes yes, sometimes no - handle = 0. I can not find the rules. How can I get it in the right way…
Branko
  • 1,384
  • 1
  • 16
  • 35
0
votes
1 answer

Delphi:How to run Form2 On Form1.TMoviePlayer

This Form1 movieplayer1.UsePitchTempo:=false; movieplayer1.FileName :=FileNamePlay; txtDur.Text := Format('%f', [Form111.movieplayer1.Duration] ); txtHeight.Text := Format('%d', [Form111.movieplayer1.VideoHeight] ); txtWidth.Text := …
k.bon
  • 386
  • 2
  • 9
0
votes
2 answers

How to change time in DBEdit bounded to DateTime Field to military time format like ' 2300'?

I'm using Delphi XE3 and XE2 I have a TDBEdit which is bounded to a TDateTime field in my database. My TDBEdit should display the time in military format which is 2300 but it's currently displaying the regular time 10:05:00 AM I've tried to set the…
Dreamer64
  • 923
  • 2
  • 13
  • 30
0
votes
1 answer

Is sqlite3.c is compiled with SQLITE_OMIT_AUTOINIT defined in the Windows 3.7.17 distribution?

I switched from using custom Sqlite3 wrapper to System.Sqlite unit from Delphi XE3. So far I am happy with the outcome but I am not 100% sure if I should still call ... initialization sqlite3_initialize; finalization …
Gad D Lord
  • 6,620
  • 12
  • 60
  • 106
0
votes
1 answer

call function in epanet2.dll

I am converting code from Delphi 7 to XE3 for Epanet. My issue is to do with the *char in a dll compiled in C. The code within the dll is as follow: int DLLEXPORT ENopen(char *f1, char *f2, char *f3) /* Check that file names are not identical…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Delphi xe3 vcl to firemonkey array issue

When converting from VCL to Firemonkey in Delphi, I have the following issue: In VCL I have the following array: Tcarray=array[1..$04000000] of Tcoordinate; - This works fine. However, declaring the same array in Firemonkey I get an exception about…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Building and evaluating expressions using Delphi RTTI

I am faced with a task of allowing the user to define the expressions using the compiled classes with RTTI enabled. Let me put it in a simple way. TAnimal = class(TPersistent) private fWeight : Double; fHeight : Double; fName :…
Rahul W
  • 833
  • 11
  • 26
0
votes
2 answers

I'm looking for a list like this in the image for Delphi XE3?

Anybody knows where to find or how to make a list like this one in Delphi XE3 ? Or it's time to leave Delphi and use Visual studio ? however this site list view control for .NET Windows Forms claims that this control can be used with .NET and I…
Dreamer64
  • 923
  • 2
  • 13
  • 30
0
votes
1 answer

What is the idea behind loading large amount of data in a Scroll Box?

I'm using Delphi XE3, and trying to create a massaging application same as outlook type, but when I try to load the Tscroll box with data about 2000 record it's getting so slow! How can outlook scrolbox hold that much of data without being slow or…
Dreamer64
  • 923
  • 2
  • 13
  • 30
0
votes
2 answers

Delphi Datasnap & Active Directory

Hi I am using Delphi XE2 & XE3 Is there any way to get Delphi Datasnap to Logon using credentials from windows Active directory?
Charles Faiga
  • 11,665
  • 25
  • 102
  • 139
0
votes
1 answer

MacOs X dynamic library incorrect work in Delphi XE3 project

I have created simple ObjectiveC dynamic library with one function NSString* DateTimeToString(NSDate* dt) { NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@"YYYY'-'MM'-'dd'T'HH':'mm':'ss"]; NSString…
GothAr
  • 503
  • 5
  • 16