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
-1
votes
1 answer

How do I call webservice from Delphi?

I am writing an application that needs to run on Android and on Windows. How can I receive information from a webservice and and iterate through the data received? I would like to recieve data from the following webservice: …
user3337132
  • 135
  • 2
  • 6
-1
votes
1 answer

Program in front of the start menu - DELPHI

Good morning ... I'm making a program that has to stand in front of everything in Windows ... From TASKBAR ... And even the Start Menu in Windows 8 ... Maybe the question becomes confusing due to the translation ... I am using the following code : /…
user3185448
  • 81
  • 1
  • 10
-1
votes
2 answers

Delphi XE5 - Possibility of using Application(TApplication) variable in other units

Using Delphi XE5 I'd like to use Application variable (TApplication type) in other unit's class. If I try to pass it with var or out parameter and then use it - I get Access Violation error. Is there a way to get data from Application in shared…
-1
votes
2 answers

How to update drawing in OnPaint Delphi

Good day ... I am using OnPaint Delphi to create a few lines ... until it's all right ... My problem starts when I try to update these lines ... I found that to clean the screen, I can use: Invalidate () ex: Then if True Begin      …
user3185448
  • 81
  • 1
  • 10
-1
votes
2 answers

Firemonkey: Why does TBitmap.LoadFromFile() fail?

Enviroment: Delphi XE5, Win7 I have VCL application. Want to use Firemonkey classes to little image processing. Task is to get thumbnails from image files. bmp: TBitmap; ... bmp := FMX.Graphics.TBitmap.Create(100,…
mad
  • 1,029
  • 3
  • 17
  • 38
-1
votes
2 answers

incremental string backoff

Using Delphi XE-5 Firemonkey mobile I have a string (Path) that looks like this host domain and node here\\something1\\something2\\something3\\something4\\something5 I need a function that removes each portion with each call. e.g., when call the…
JakeSays
  • 2,048
  • 8
  • 29
  • 43
-1
votes
1 answer

Accessing Android sensors in Embarcadero XE5

I'm trying to use Environmental Sensors of Galaxy S4 by using Embarcadero XE5 and running on Android 4.2.2. This is the code I'm using but I get an Access Violation. Can you help me, please? uses System.SysUtils, System.Types, System.UITypes,…
-1
votes
2 answers

how can i convert byte to JByte in delphi xe5?

have jstringtostring or stringtojstring. how can i convert byte to JByte (or other variables types)? .... var x:jbyte; begin x:=bytetojbyte(65); .... end; thanks.
ilhan
  • 45
  • 1
  • 10
-1
votes
3 answers

Show sqlite query results in a TEdit - Firemonkey Mobile application?

I have an sqlite database and i want to execute a select query and show the result in the TEdit. How can i do it? query := 'SELECT username FROM users'; //The query returns only one row FDQuery1.ExecSQL; FDQuery1.Open(); Edit1.Text := ??
Christos K.
  • 99
  • 3
  • 14
-1
votes
2 answers

Lag when Scrolling a TListBox

I have a TListBox that contains about 50 TListboxItems aka Items. Each item contains 3 TTexts used as labels, 1 TImage with resolution of 48x48 to indicate a 'status', and a Check box for selecting items. When on a device, there is a big lag time…
ThisGuy
  • 1,405
  • 1
  • 24
  • 51
-1
votes
1 answer

How do I push notifications if my app hasn't been run yet?

Assuming the user has not launched your app yet, but it has been run before. Is there a way to still "push" news/updates? To explain what I mean: Imagine the user installed "your-restaurants-in-your-area" local orientated app, and configured the app…
Tom
  • 3,587
  • 9
  • 69
  • 124
-2
votes
1 answer

CSV copy paste text issue

I write a little tool for my workmate to import csv file to access. There are a lot of data so I want to test it with few rows... And the problem is when I copy few rows from the big CSV to a new CSV (COPY+PASTE) the program wont recognize the…
-2
votes
1 answer

Is This Implementation of AnonymousThread Correct?

The MCVE describing the idea is the following. There is an array of classes/records that have a method that takes an input parameter and calculates some result that is stored in one of its variables: type TMyRecord = record FLastResult:…
asd-tm
  • 3,381
  • 2
  • 24
  • 41
-2
votes
1 answer

Does Delphi XE5 support Android Lollipop?

I'm using Delphi XE5. My Android application works on KitKat, but not on Lollipop. Does Delphi XE5 support Lollipop or not?
-2
votes
2 answers

How to save Windows.tagBitmap to stream as a full DIB?

from a third party component I am receiving a PBitmap which is a pointer to Windows.tagBitmap record. { Bitmap Header Definition } PBitmap = ^TBitmap; {$EXTERNALSYM tagBITMAP} tagBITMAP = record bmType: Longint; bmWidth: Longint; …
Wodzu
  • 6,932
  • 10
  • 65
  • 105