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
4
votes
3 answers

how to fix TTreeView bug when using TreeNode.MoveTo?

Using TreeNode.MoveTo(...) method sometimes does not work properly and raises an "Access Violation" exception. mosttimes works and some time not. Mosttimes 'Access Violation in module COMCTL32.DLL. Read of address FEEEFEFA' and program…
Azad
  • 5,144
  • 4
  • 28
  • 56
4
votes
1 answer

How to setup multiple delphi versions on jenkins node?

We have Delphi 2010 setup as described here and jobs are running fine. Now we need to add Delphi XE5 to that node as well. Problem are variables BDS and BDSCOMMONDIR. They are set as global variables pointing to e.g. BDS points to C:\Program Files…
rakekniven
  • 43
  • 4
4
votes
2 answers

What does mean VarType(aVariant) = 273 (or $111)?

What does mean VarType(aVariant) = 273 (or $111)? It's undocumented variant type. VarTypeAsText(aVariant) returns Expression illegal in evaluator error.
Dmitry
  • 14,306
  • 23
  • 105
  • 189
4
votes
1 answer

iTunes iOS download error / won't install

Noone including myself can download any apps from my iTunes account except the first app I released. They all go through automated testing + apple verification, however when I (and other) try to download through my phone I get error message…
Tom
  • 3,587
  • 9
  • 69
  • 124
4
votes
2 answers

iOS7 Blurred Overlay in Delphi XE6

I asked this question before and deleted just because 1) it seemed like more work than I wanted to do, and 2) I went about asking my question poorly and it got closed. But, after doing more research, I've decided I will revisit this…
ThisGuy
  • 1,405
  • 1
  • 24
  • 51
4
votes
1 answer

OnClick event for TModel3D

I am using Delphi XE5 and I have firemonkey application. there is a Viewport and I put an instance of TModel3D and loaded an object from Obj file (it is a simple object. extruded hexagon) which created in 3dsMax. I wrote OnClick function for this…
Loghman
  • 1,500
  • 1
  • 14
  • 30
4
votes
1 answer

SOAP request created with RTTI not completely parsed to XML

In a new application we are creating now, we have a lot of SOAP requests (easily over 50 different ones for now). In order to abstract the creation of the requests as much as possible, we added an abstract class named TRequestMessageParser to…
Guillem Vicens
  • 3,936
  • 30
  • 44
4
votes
1 answer

FastReport 4 and VCL Styles bugs

Some background info. I work at a very small company who has recently upgraded Delphi from version 6 (!!!) to Rad Studio XE5 and things have certainly changed a lot in 10+ years. Most things seems to have been improved in the IDE and framework, but…
Mingo
  • 53
  • 1
  • 6
4
votes
2 answers

How to get version of android (4.1.1, 4.4.2,...) in Delphi

I would like to get the version of the Android device. In Java it is android.os.Build.VERSION.RELEASE, how is it in Delphi?
Piskous
  • 51
  • 4
4
votes
1 answer

Getting not used hint for overloaded method in generic class

I have a generic class in my project which has two overloaded methods with different visibility,as follows: One with private visibility and some parameters. It uses the parameters and some private structures (some of which are injected in the…
Guillem Vicens
  • 3,936
  • 30
  • 44
4
votes
1 answer

How to delete sms from inbox?

I've programmed an automatic sms responder: . . . function IsSMSAnswered(smsid: string): Boolean; begin // Code to test if SMS is answered end; procedure SendReplySMS(reply_smssender, reply_smsbody: string); begin // Code to send reply to…
pudnivec74
  • 845
  • 1
  • 8
  • 22
4
votes
0 answers

How to use Windows default font in Delphi

As you know, the default font in Windows XP and Windows 7 is Tahoma. But in Windows 8 and 8.1, it changed to Segoe UI. Even though my application is running on Windows 8.1, the default font in it, is Tahoma. So my question is how can I recognize…
Sky
  • 4,244
  • 7
  • 54
  • 83
4
votes
1 answer

Deploying SQLite database to Android with Delphi FireMonkey

I am trying to deploy an application to run on the android emulator using delphi that uses an SQLite database and populates a combobox with the query results. I Have tested all the code on a Win32 application and everything is working as intended,…
amit2k5
  • 97
  • 2
  • 9
4
votes
1 answer

Closing modal dialog in delphi firemonkey mobile application (Android)

I am having the dandiest time trying to figure out why my modal form will not close! Using Delphi XE-5 and FireMonkey Mobile App (Android), i followed the the info "ShowModal Dialogs in FireMonkey Mobile Apps" for demo purposes, i created a new…
LuvRAD
  • 118
  • 1
  • 4
  • 13
4
votes
1 answer

Linking FPC .o files into Delphi

How can I link a FPC .o from a library to a Delphi executable. When I try to link the following code I get a bunch of unsatisfied forward or external declarations. library project1; {$mode objfpc}{$H+} uses Classes { you can add units after…
user3060326
  • 187
  • 2
  • 16