Questions tagged [delphi-xe5]

Delphi XE5 is a specific version of Delphi released in September 2013. Always use the [delphi] tag alongside this tag.

Delphi XE5 is a specific version of Delphi.

Delphi XE5 was released on September 12, 2013 and is available as a standalone product or as part of RAD Studio XE5.

Delphi XE5 is compiler version 26, directive symbol VER260.

Notable new features of Delphi XE5 are:

Delphi XE5 was preceded by Delphi XE4.

Always use the tag alongside this tag.

880 questions
0
votes
0 answers

Firemonkey (Delphi XE5) Android Altitude from GPS

Trying to get GPS altitude on an Android device using Delphi XE5/Firemonkey. ... var AltDbl : double; ... with Sender as TCustomLocationSensor do begin //did this to bypass any possible problem with the ToString conversion AltDbl…
0
votes
1 answer

Firemonkey iOS share data

Please do not mark this question as duplicated or already answered. I specifically need help with the Delphi, and there is NO answers with regards to the code (if I am wrong please provide me with it). Also please note that I am looking for help…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Delphi XE5 Android Httpserver segmentation fault?

I'm having this incredibly crazy error! I drop idhttpserver,webbrowser on a new mobile android app. I want the server to provide content to the browser. It works great on windows but fails on my android device. I tested a tcpserver and tcpclient.…
Skywalker
  • 23
  • 1
  • 7
0
votes
1 answer

Delphi debugger dropping into dbxCommon

I've just encountered an odd problem whilst translating one of my apps to Delphi XE5 from XE2 I'm not sure if this is a change in behavior with XE5, or whether I've disabled something in XE2, that I haven't (yet) in XE5. As part of the switch to XE5…
Dan Kelly
  • 2,634
  • 5
  • 41
  • 61
0
votes
0 answers

How do I create and use TJAlarmManager with Delphi XE5?

I do not understand this really. example: alarm: TJAlarmManager; test: JAlarmManager; test:= alarm.Create; alarm.Init(test, z <-???); What does the pointer in this constructor mean ? alarm:=TJAlarmManager.create(o:alarmmanger,p:pointer) As I…
0
votes
1 answer

Firemonkey iOS access one file from different apps

I am writing multiple apps for iPad. All these apps have some settings in common. I therefore would like to have one app that handles the settings and write them to a file - the respective apps will then retrieve their settings from this single…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Delphi XE5 and TFloatRec and System.floatToDecimal

In previous versions of Delphi (we use Delphi 2009), the TFloatRec record (used in floatToDecimal) was defined as TFloatRec = packed record Exponent: Smallint; Negative: Boolean; Digits: array[0..20] of AnsiChar; end; However in…
mmmm
  • 2,431
  • 2
  • 35
  • 56
0
votes
1 answer

Delphi download file Android with Memory Stream

I am trying to download a file from a server in this way: var MeS:TMemoryStream; begin Mes:=TMemoryStream.Create; IdFTP1.Connect; Mes.Position:=0; try IdFTP1.Get(Mes, 'dolcestilnovo.txt', True, False); finally MeS.Free; …
Alberto Rossi
  • 1,800
  • 4
  • 36
  • 58
0
votes
1 answer

PopupMenu Android DelphiXE5 what is the bestway to do

I'm trying to create this like this form. This is a TPopupMenu or a TPanel or a TForm? I try with panel and it works, but i dont know if exist's anyway simpliest to do this. Anyone know's the right way to do this? similar questions was posted here…
quimdotractor
  • 101
  • 3
  • 11
0
votes
1 answer

Delphi livebinding TClientDataSet TStringGrid runtime

in Firemonkey (XE5) I created a Frame with a TStringGrid and want to add a "procedure ShowData( aClientSet:TClientSet);" in that pprocedure the rows of the Clientset shall be shown readonly with LiveBindings (TBindSourceDB ?) without knowing…
0
votes
2 answers

How to get position of any touch and to process on it?(android)

For example,i have form with 2 buttons. I click on button1,and after click on button2 with another finger.How to create event for button2 and get second touch coordinate?
-1
votes
1 answer

Fmx update control without applicatio.processmessages

What is the best way to update FMX control without using Apllication.Processmessages method, וn main form. Apllication.Processmessages call can cause to unwanted asynchrony user events to come in before operation completed. We have old delphi XE5…
-1
votes
1 answer

Unable to set thread concurrency model to multithreaded apartment

I've created a new DUnit Test Project and I am trying to setup multithreaded apartment at its start. The problem is that on one computer apartment type is changed. program COMApartment; {$IFDEF CONSOLE_TESTRUNNER} {$APPTYPE CONSOLE} {$ENDIF} uses …
Wodzu
  • 6,932
  • 10
  • 65
  • 105
-1
votes
1 answer

How to prevent OutOfMemory exception when opening large Access .MDB files?

I’m trying to read data which is generated by another application and stored in a Microsoft Office Access .MDB file. The number of records in some particular tables can vary from a few thousands up to over 10 millions depending on size of the model…
saastn
  • 5,717
  • 8
  • 47
  • 78
-1
votes
1 answer

Can we use a lower version of Delphi (Delphi xe5) to edit a project file from the higher version (Delphi xe6)

Every time I run the .dproj file in xe5, I get an error "Exception EReadError in module StartCoatPro.exe at 000C0304. Error reading LineSeries1.Legend.Visible: Property Legend.Visible does not exist." I tried looking for the Legend.Visible property…
Vivek30
  • 21
  • 5