Questions tagged [delphi-xe8]

Delphi XE8 is a specific version of Delphi released in April 2015.

Delphi XE8 is a specific version of Delphi released in April 2015.
It supports development of applications covering , , , (both 32 and 64-bit), and . Windows applications may be built using either the framework or the (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework.

Always use the tag alongside this tag.

494 questions
-1
votes
2 answers

RAD Studio XE8 behave strange

I am using RAD Studio XE8 i have a strange issue when press enter the text line in IDE is not moving to next line or when i press the spacebar it starts to remove the text followed by the space.
Fiaz
  • 30
  • 2
  • 9
-1
votes
1 answer

Delphi inheritance overlap: creating child see father

This is the case: 3 involucrated: a myComponent component, an ancestor form and a child form: (edited) MyComponent: unit Component1; interface uses System.SysUtils, System.Classes, Vcl.Dialogs; type TMyComponent = class(TComponent) private …
NizamUlMulk
  • 386
  • 1
  • 4
  • 21
-1
votes
1 answer

Delphi: How to Get All Images From Server Database by using App tethering?

Hi, EveryBody! I've Client and Server. I'm using Delphi-xe8. App ->Multi-Device Application Both Client and Server are using App tethering, SQLite Database. When Server adding image to database, it's perfectly adding, but In a Client side when…
Alex Kirov
  • 217
  • 4
  • 16
-1
votes
1 answer

How can I remove the additional icon on the task bar when I use both VCL and FMX?

If you create Delphi VCL application by default you have one VCL form and if you run your application there is only one icon on your task bar. After that if add a FMX form to it, you can have both forms and use them both. but in the task bar when…
Loghman
  • 1,500
  • 1
  • 14
  • 30
-1
votes
1 answer

XML parsing in Delphi XE8

Hi I'm a newbe on programming. But I have to parse XML file using Delphi. I found one article on this article but I can not solve my question. I have a XML file like belowed. I have to get datas from Ccy, CcyNm_EN, Rate, date. I'm not a lazy but I…
Hayrulla Melibayev
  • 462
  • 1
  • 5
  • 20
-1
votes
1 answer

What is Delphi error code e8000067?

I am building an app using Delphi XE8 and FireMonkey. I've got it working on Android and am trying to get it working on an iPad. The iPad is running OS X 5.1.1. I've got a Debug Provisioning profile. First, when I tried to run the application on the…
-1
votes
3 answers

Delphi tbutton image position

In delphi xe 8 tbutton's image has aligning for "left, center, right and bottom" but when i select "center" align for the image, the image is aligning in the middle of button and stays behind the caption What i wanna do is align the image right…
Emre Acikgoz
  • 93
  • 1
  • 11
-1
votes
1 answer

Delphi XE8 android app is not detecting Samsung Note 4

I have Delphi XE8. Also JDK, SDK and NDK are already installed. I followed all the steps defined in below link. Still my mobile project is not detecting my Samsung Note 4. BTW my development environment is in VM. But my VM is able to detect phone…
ary
  • 939
  • 2
  • 13
  • 32
-1
votes
1 answer

Unknown memory leak form delphi xe8

I created a simple application with a button on a form Tform1 which is used to create another form Tform2. Form2 contains a toolbar with 2 buttons at each corner and a label with a tabcontrol below it. I keep getting this memory leak below. Im sure…
AceWan
  • 11
  • 3
-1
votes
1 answer

Delphi XE8 strange Header

On Delphi XE8 normally headers with a small website show up on the welcome page. Currently I get strange text there, for example: ****#0 JError::throwError(JException Object ([] => 1,[] => 500,[] => Application Instantiation Error,[] => ,[] =>…
-1
votes
1 answer

LockBox 3 - Components not working with VCL in Delphi XE8

I have just downloaded and installed LockBox 3 in my Delphi XE8. But: The VCL Tool-Palette does not show the components. When I switch to a Firemonkey form I can see both, the VCL and Firemonkey Groups. In a VCL form I can see neither. After:…
wHiZZaRt
  • 1
  • 3
-1
votes
1 answer

Delphi Thread doesn't run

I'm trying to search for all files in all subfolders so it takes long time and application stop responding, so I used Thread (it's first time work with Threads) I read about it and I found this way to create and execute threads, but nothing happen…
Delphi Lover
  • 85
  • 1
  • 11
-1
votes
2 answers

Workaround Reserved Words

I have a table called Candidates with fields C_ID, C_Surname, C_Names and C_Gender. The word NAMES is reserved in Microsoft Jet 4.0 and therefore the SQL statement SELECT C_Names AS Names does not work. Is there any workaround to use the word Names…
-1
votes
1 answer

Populate ListBox Using TDirectory.GetFiles Delphi XE8

Does a more efficient way of populating ListBox with file names from TDirectory.GetFiles exist? procedure PopListBox(var lb: TListBox; dir, ext: String; so: TSearchOption); var i: Integer; iend: Integer; oc: TStringDynArray; begin oc :=…
Arch Brooks
  • 183
  • 1
  • 3
  • 19
-1
votes
1 answer

Delphi XE8: MemoryStream is filled with junk

IdFTP_Main.Get('test.ini',MemoryStream); MemoryStream.Read(Buffer,MemoryStream.Size); SetString(TempStatus, PChar(MemoryStream.Memory), MemoryStream.Size div SizeOf(WideChar)); test.ini contains a short, plain text string. The memory size in…
Charles Barouch
  • 313
  • 2
  • 12