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
0
votes
2 answers

StringGrid issue in Delphi XE8 firemonkey mobile app

I'm using Delphi XE8 for developing mobile application and I'm facing some of the problem in TStringGrid. I have written the following code in StringGridSelectCell event. Showmessage(StringGrid.Cells[0, ARow]); And this shows the proper value of…
0
votes
0 answers

Where is the TIWFile.Filename property?

I have a very old program made in Delphi 7, using IntraWeb 80. Now I'm porting it to Delphi XE8, with the latest IntraWeb library XIV. Seems that the TIWFile control from the last version of IntraWeb is missing the TIWFile.Filename property. I've…
0
votes
1 answer

Need to send data from TServersocket to TidTcpClient

I'm using Delphi XE8 for developing mobile apps and Desktop application. In mobile application, I'm using TIDtcpClient component and in Desktop application application, I'm using TServerSocket. Server Desktop application contains TList which…
test12345
  • 367
  • 1
  • 21
0
votes
1 answer

¿How can I send and recieve strings from tidtcpclient and tidtcpserver and to create a chat?

im new at delphi languaje and im using Rad Studio to make apps work on every device with oune single programming. Right now Im supposed to make a chat using sockets, I made a chat for windows only using tclientsocket and tserversocket using the next…
0
votes
2 answers

Install Delphi Package get error for missing rtl170.bpl

currently I move a project from Delphi XE to XE8. We use a component but the most recent version is for XE3 so I take the code and change it until it compiles. Now I want to install the design time package, but I get the error that rtl170.bpl is…
Sebastian
  • 952
  • 1
  • 14
  • 41
0
votes
1 answer

EDelphi XE8 "List index out of bounds (-1)" when clicking the empty line in ListBox

I've recently switched to Embracadero Delphi XE8 from good ol' Delphi 7, and now i'm constantly receiving this error. It appears every time i misclick an empty line in any ListBox - something i couldn't do in D7. Is this some kind of bug, or am i…
0
votes
3 answers

TSearchBox in front of TListBoxItem in Android with Delphi XE8

I have a firemonkey multi-device project in Delphi XE8 where I've added a TSearchBox to my TListBox. Only on Android the SearchBox is placed in front of my TListBoxItems. On windows and iOS it displays the searchbox above all the lisboxitems and…
Remi
  • 1,289
  • 1
  • 18
  • 52
0
votes
3 answers

Delphi Xe8 , How to get android device token?

I registered Google Cloud Messaging(GCM) system. I am using Delphi Xe8 . I need to get android device token for send notification with gcm. But I have no idea about device token. How can I get device token ?
0
votes
0 answers

Delphi Android Text render bug?

So I'm working with Delphi XE-8 on Android, using a thread for work in the background. And I have a timer updating a label for the clock from the mainthread (maybe there is a more efficient way to do this). Now when I start my app on Android,…
J Klaveren
  • 154
  • 5
  • 16
0
votes
1 answer

Signing certificate error when update apk from XE7 to XE8

My Android apk was developed by XE7. Now I upgrade the project with XE8. The IDE report a signing certificate error when install the apk to Android device: Unable to create process: Unable to install …
Leo
  • 1,947
  • 2
  • 20
  • 37
0
votes
1 answer

Delphi XE8 - Send Notification from Parse using VCL app

I am learning the new Baas technology with XE8. I created a small app to receive notification on Android mobiles using Parse. Everything is working fine when the notification message is sent from Parse web site. However when my VCL app send the…
Hughes
  • 9
  • 2
0
votes
0 answers

ZCompress causes access violation Delphi Xe8

using the ZLib library's ZCompress(); function when having System.Sensors, System.Sensors.Components also in the uses clause causes an Access Violation on this line function deflateInit(var strm: z_stream; level: Integer): Integer; begin Result…
ThisGuy
  • 1,405
  • 1
  • 24
  • 51
0
votes
0 answers

project locker (svn) and delphixe7/xe8

I use ProjectLocker for my offsite SVN repository. Now that XE7 and XE8 support SVN, I can not get either to connect to it without getting a 500 server error, so I still must use Tortoise. I know this is typically a sever issue, but for what ever…
0
votes
1 answer

Multi-platform equivalent to QueryPerformanceCounter?

In Windows, I've used QueryPerformanceCounter to measure code performance in microseconds. I would like to do the same in all platforms within Firemonkey. I found one solution, but it's only for C++. What's the equivalent for all platforms?
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
0
votes
3 answers

Find Value Type of a JSONValue (TJSONArray or TJSONObject)

I would like to do this with the standard Library in Delphi XE8 if Assigned(JSONValue) then case JSONValue.ValueType of jsArray : ProcessArrayResponse(JSONValue as TJSONArray); jsObject : ProcessObjectResponse(JSONValue as…
Fabien Fert
  • 95
  • 2
  • 11