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

Delphi XE7 TBannerAd not showing ad on Android

I'm trying to test run some admob ads via the TBannerAd component in Delphi xe7, to see if it will work on ios and android. Upon testing the ad seems to load on IOS but on Android nothing happens. I've checked the manifest file and made sure it…
0
votes
1 answer

Error loading image from clientdataset using datasnap [Delphi XE7, firemonkey mobile]

I am using Delphi XE7, Firemonkey Mobile. Tried both on W32 as well as my Nexus4 (Android 4.4.4). Problem: when loading an image from the clientdataset I get the following errors 1. Remote error: [FireDAC]{Phys][fB]-306. Command text must not be…
Jro
  • 135
  • 9
0
votes
1 answer

Run a Terminal Command with Delphi XE7 FMX

How can I run a terminal command via Delphi xe6-7 OSX application ? I am wanting to run a script that returns all track names from iTunes playlist for example. I see for VCL and WINDOWS I can run a ShellExecute() function, but I can't seem to find…
ThisGuy
  • 1,405
  • 1
  • 24
  • 51
-1
votes
2 answers

delphi convert set type to array of character

Currently in a legacy code I have a set which I want to convert to array of string so i can pass this as a parameter for existing method. //Existing code to be used and converted const North = 'F'; Pay = 'P'; Lynk = 'L'; TCharSet =…
mano
  • 308
  • 3
  • 19
-1
votes
2 answers

How should I translate char dbcc_name[1] to Delphi?

I have a problem to translate the following C++ code to Delphi. This is the code: char dbcc_name[1] And this is what I think what it should be: dbcc_name : array [0..0] of Char; However, I know this field should return a name, and not just one…
ToKa
  • 80
  • 7
-1
votes
1 answer

How to install a TMS component from old versions?

Previously I worked on a project in Delphi XE7 and now want to open and edit it in Delphi 10 Seattle. I had used TMS component pack but my old TMS is for Delphi XE7. Actually, I don't want to buy a newer version but want to use some of that old…
-1
votes
1 answer

TIpTCPServer and Client in one application

I make an application where the client and the server are in the same program. I use Delphi XE7 and components TIpTCPServer / ... Client. But when I try to close the server with the client connected (in the same window), the program stops…
nup
  • 346
  • 2
  • 13
-1
votes
1 answer

Program freezes but the CPU utilization is zero

Sometimes my program freezes. If i click 'Pause program' it shows me this: ntdll.RtlUserThreadStart: 773301C4 89442404 mov [esp+$04],eax 773301C8 895C2408 mov [esp+$08],ebx 773301CC E9E9960200 jmp $773598ba 773301D1…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
-1
votes
1 answer

free memory used by a Tbitmaplistanimation.animationbitmap Exception raised EInvalid Pointer

The problem I am facing is as follows.Please note I'm no pro at delphi pascal To save a Large amount of memory and time I created a procedure: procedure TForm1.Placeholder(tspath: STRING); begin //rgbholder :TImage globally declared (Dinamicly…
-1
votes
1 answer

Too much calls paint method

I created a test component unit Control1; interface uses System.SysUtils, System.Classes, FMX.Types, FMX.Controls; type TTestComp = class(TControl) private i: integer; protected procedure Paint; override; public constructor…
-1
votes
1 answer

How to run IDE Fix Pack for XE7

I need to Know How to run IDE Fix Pack for XE7, I installed the IDE fix Pack but i need to know how to import it inside XE7
-1
votes
1 answer

how do i use UPX safely?

I am trying to reduce my application size with upx using --lzma compression method. But, whenever I use upx and scan my application after compress, its shows that this application has virus. This is the virus result that comes up…
MartinLoanel
  • 184
  • 3
  • 17
-1
votes
2 answers

How to use the EnumWindows call back function?

I would like to have a single neat (close and self contained) function (let's call it GetDesktopHandle) that returns a handle to the Desktop window. I use the code below. But it only works in the DeskHandle is a global var. How to get rid of this…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
-1
votes
4 answers

How to save classic Delphi string to disk (and read them back)?

I want to achieve a very very basic task in Delphi: to save a string to disk and load it back. It seems trivial but I had problems doing this TWICE since I upgraded to IOUtils (and one more time before that... this is why I took the 'brilliant'…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
-1
votes
1 answer

How can I clear a TDBImage field?

I have a TDBImage control. I want to clear/erase/empty through a TButton's click event. i.e., what's displayed on the screen, as opposed to what's in the underlying database which I could accomplish by setting to empty_blob(). It seems the actual…
BIBD
  • 15,107
  • 25
  • 85
  • 137