Questions tagged [delphi-xe7]

Delphi XE7 is a specific version of Delphi released in September 2014.

Delphi XE7 is a specific version of Delphi released in September 2014. It supports development of applications covering Win32, Win64, OSX, iOS, and Android. Windows applications (32bit and 64bit) may be built using either the VCL framework or the Firemonkey (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework.

Always use the tag alongside this tag.

909 questions
0
votes
1 answer

How can I Compiling and running Multi-Device Application in Delphi xe7?

I am a beginner. I am using Delphi XE7. I have built a 32 bit Windows application successfully without any error. Now I want to learn/create an Android application, so I have tried to compile and run some sample project. But every time I have a…
Zahid Islam
  • 740
  • 1
  • 5
  • 11
0
votes
1 answer

RadStudio XE7 unable to Sync to iOS Device

I have an app developed using XE7 that I would now like to test on an iOS device. I am runing Xcode 6 so cant build to the simulator at all. So I have attempted to run on my iPhone. I have created the required certificates and provisioning profile…
Dave Gill
  • 234
  • 1
  • 14
0
votes
2 answers

Where's the bool64 type?

I'm currently porting a small app that used longbool in some instances and would have used a bool64 type if I could find one. It's not a big issue to change the type to in64 and then set/check for 0 to find if true/false but if there was some way to…
Marladu
  • 545
  • 5
  • 11
0
votes
1 answer

Delphi XE7 listbox on Android - Items evenly divided on the screen

I am using a listbox in an application with Delphi XE7 and need to put 9 items in split screen evenly as this image: I do not know if I'm using the correct component but I can not make this division. Any idea how to do?
Luana
  • 183
  • 1
  • 2
  • 10
0
votes
1 answer

Reg socket communication issue

I'm using Delphi XE7 for developing Client and Server application. I have created Server application using Delphi XE7, I'm running the server application in my Local system(Laptop which is connected to Wifi. IP: 192.168.0.4 ). And i have created…
0
votes
1 answer

Receiving SIGSEGV (11) errors in many places

I've been receiving SIGSEGV (11) exceptions in multi-platform apps with seemingly simple code. Debugger seems to take me to a different place each time this happens. So I threw together a simple app to demonstrate this. It does not happen in…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
0
votes
2 answers

How to get rid of this compiler warning?

I have a few classes (of TObject) in Delphi XE7 (Firemonkey) which have a property AsJson: uses System.Classes, System.SysUtils, XSuperObject; type TMyObject = class(TObject) public property AsJson: ISuperObject read GetAsJson; …
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
0
votes
0 answers

Delphi mobile app - store data across new mobile phones

Is there any standardized way in Delphi mobile apps for storing/syncing app data across mobile phones for Android + iOS? Here is my siuation: Currently I ship some data with my apps and new data is downloaded to cache. This works well, also when…
Tom
  • 3,587
  • 9
  • 69
  • 124
0
votes
0 answers

How to dynamically insert/delete items in a TListBox under different headers?

I'm working on a multi-platform Firemonkey UI which has some TListBox controls which have different headers (TListBoxGroupHeader). Each header has a permanent item underneath it to add a new item under that header. The Add Item button is always…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
0
votes
1 answer

Prevent Android app. closure

With the advent of the non-blocking MessageDlg in XE7, it seems that it's now impossible to conditionally prevent the app. from closing as we do in Windows (or did in XE5): procedure TfrmMain.FormCloseQuery(Sender: TObject; var CanClose:…
Freddie Bell
  • 2,186
  • 24
  • 43
0
votes
1 answer

When notified for INTERNET_STATUS_COOKIE_SENT, DWORD(lpvStatusInformation) does not return cookie count

Microsoft says that whenever InternetStatusCallback() notifies for event INTERNET_STATUS_COOKIE_SENT the lpvStatusInformation is DWORD holding the number of cookies http://msdn.microsoft.com/en-us/library/windows/desktop/aa385121.aspx I receive too…
Gad D Lord
  • 6,620
  • 12
  • 60
  • 106
0
votes
1 answer

Cannot install TQRChart to Delphi XE7?

When I install TQrChart to Delphi XE7, I finished all steps according to the guide of TeeChart’s (in "QuickReport" subfolder). But XE7 reports this error: Cannot load package 'DclTee921.bpl' it contains unit 'VCLTee.TeeChartExp', which is also…
www2010
  • 1
  • 1
0
votes
1 answer

Copy and return FDDataSet from function in Delphi

I have function that should return FDDataset from FDQuery, but I can't copy dataset to Result, or to another FDDataset. This is my main Code: procedure TForm1.Button1Click(Sender: TObject); var: Fix: TFDDataSet; begin Fix.CreateDataSet; …
Gem
  • 516
  • 1
  • 8
  • 19
0
votes
0 answers

Delphi and mysql

I m trying to use mysql db from Delphi xe7, I' m using a simple app to get a DBgrid filled from a mySQL table. I have used one form and one datamodule. The form has a DBGrid and the Datamodule has the following : FireDAC Connection , Query ,…
koul
  • 431
  • 2
  • 10
  • 20
0
votes
1 answer

How can I receive a string from FPC DLL?

How can I receive a string from a FPC DLL? I would like to send two pointers concat them and receive the result in another string in Delphi. library Test; {$mode Delphi} uses Classes; function Concat(const S1, S2: PWideChar): String;…