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

Background Item list view - Delphi

I would like to know how to paint items Listview. My situation is as follows: I have a listview where every time you do a check and this check returns true, you have to change the listview line color. I saw examples by changing the color, but I…
abcd
  • 441
  • 6
  • 24
-1
votes
2 answers

Delphi Countdown timer

I am trying to make a countdown timer, the idea is to set the time in text edit property and after i click set timer(button), that time to be sent to Label, which will then start the countdown to 0. I have gotten to this part, but i cant figure out…
Luka Sinobad
  • 23
  • 1
  • 2
  • 5
-1
votes
1 answer

How to copy all the words in a paragraph and add each word # on delphi

Using Delphi 7, if I have some text like that shown in the lefthand window below, how could I extract all the words and punctuation in a paragraph and copy them to another window like that on the right, followed by a #?
Ramy Réz
  • 60
  • 6
-1
votes
2 answers

Does Delphi support ARMv5 and ARMv6 CPU's?

Does Delphi support ARMv5 and ARMv6 CPU's and is there a way to make my app work on them?
-1
votes
1 answer

Error Recompiling from Delphi 7 to XE5

There is an old project that I need to recompile to XE5 trying to aavoid the weird Twebbrowser errors that the original D7 component brings. The code bellow works great on D7 but not on XE5. function GetFrame(FrameNo: Integer; WB: TWEbbrowser):…
-1
votes
1 answer

TWebBrowser + SaveToImage from Google Static Maps

In my program, developed in FireMonkey Mobile, I have a TWebBrowser which happened a URL of a static google map. Example: http://maps.googleapis.com/maps/api/staticmap?center=Berkeley,CA&zoom=14&size=400x400&sensor=false I need a picture of…
-1
votes
2 answers

Delphi "Not" Operator returns incorrect

This code is used to resolve whether an editor should be read only or not. Code Snippit var TempBool : Boolean; begin TempBool := (fCurrentSelectedItem as TMyCustomObject).CanEdit; //Check whether this object can be edited; TempBool…
Donovan Boddy
  • 489
  • 1
  • 6
  • 14
-1
votes
3 answers

delphi xe5 64-bit not working

This is peculiar. My Delphi XE5 was working properly and based on build switch would generate the EXE and put it in the appropriate folder (Win64\Debug or Win64\Release). Something unknown broke this functionality. If I create a new app, add…
Mike Stephenson
  • 649
  • 6
  • 14
-1
votes
2 answers

PPointerList access violation with Delphi XE 5

I get an AccessViolation when running the following simple code with Delphi XE5: Access violation at 0x0040213c: write of address 0x00000000 This runs without any problems with Delphi 2009! What has changed since than?! program…
-1
votes
1 answer

How do I block the user closing my app via the menu key?

Is there some way, with Delphi, to block Menu Key on android so that the app can't be closed or is there some way prevent the user from closing the application?
-1
votes
1 answer

Access Violation when adding multiple lines in a TMemo

It is an old problem which I first encountered when the first firemonkey came out. Now even with XE5 its the same. I can't use TMemo for anything unless each new line is added with a sufficient time delay. The problem occurs on heavy forms with…
Umair Ahmed
  • 2,420
  • 1
  • 21
  • 40
-1
votes
1 answer

Synchronize multiple threads

I'm trying to make a multithreaded application (up to lets say 100 thread) in Delphi XE5, all the thread are going to use/change a listbox in the main form, here is my code: Main Unit: private //list to hold the dynamic created threads …
Ouerghi Yassine
  • 1,835
  • 7
  • 43
  • 72
-1
votes
2 answers

How to use TPerlRegex with Unicode

How can I use TPerRegex with regular Delphi String type avoiding any UTF-8 <> UTF-16 string conversions. It seems Delphi XE5 doesn't come with UTF-16 capable PCRE library? http://qc.embarcadero.com/wc/qcmain.aspx?d=108941 As of version 8.30 PCRE…
user3060326
  • 187
  • 2
  • 16
-1
votes
1 answer

Best and simply way to store unicode record (array) into a file

Yesterday I finally moved from Delphi 7 to Delphi-XE5. And I am re-writing whole application to Unicode and have some troubles. Lets says, I have: TCountry = record Name: WideString; Extension: WideString; Region: WideString; end; and have…
Legionar
  • 7,472
  • 2
  • 41
  • 70
-1
votes
1 answer

How do I get the current time in a special TimeZone with TIdDayTimeServer?

How do i get current time from different time zones with TIdDayTimeServer? for example I set TIdDayTimeServer TimeZone to EST or BST and i want show the date and time on a label. thanx.
Hamid
  • 103
  • 1
  • 7