Questions tagged [delphi-xe]

Delphi XE is a specific version of Delphi. Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD Studio XE.

Delphi XE is a specific version of Delphi.

Delphi XE was released in August 2010, and is available as a standalone product or as part of RAD (rapid application development) Studio XE.

Delphi XE code name is Fulcrum, compiler version 22, directive symbol VER220.

Speculation about Delphi XE prior to its release often referred to this release as Delphi 2011.

Delphi XE was preceded by Delphi 2010 and succeeded by Delphi-XE2

1495 questions
0
votes
0 answers

Using of unicode with a TStringGrid

I`d like to define a string constant with mixed greek and cyrillic symbols. Something like this const some_const = 'cyrillic symbols' + $03C9; where $03C9 is the lower case letter omega from there. Maybe, I`ll should make some_const a variable in…
Ulrich Von Rekkenin
  • 352
  • 1
  • 3
  • 14
0
votes
1 answer

Delphi FMX - control paint order of controls

I want to control the order of paint each of the control at the form. I know that I can control it at the design move and it actually change creation order of controls at the form. But is there way to change that at runtime?
0
votes
1 answer

XE5 iOS app - open PDF from local storage

I am developing an iOS app using Delphi XE5. I have manage to download and store a PDF on the local device (using the Indy HTTP control), but I am unable to open the file for viewing directly from the local device storage. //This points to the…
Brendan
  • 1,237
  • 1
  • 16
  • 34
0
votes
1 answer

Delphi Combobox drop down behavior in Win7 when placed in StatusBar

I have a Delphi application which has placed combobox. Recently after migrating to Win 7, notice behavior of combobox drop down is funny. It works fine as expected in XP where combobox dropdown from status bar rectange. But in Windows 7, Combobox…
0
votes
1 answer

TIdHttp.Get converts Danish and Swedish letters

I'm experiencing a weird issue that I'm not able to find any answers for. We using Delhi XE1 and a TidHttp.Get(...) converts these letters: æøå ÆØÅ äö ÄÖ To these wrong letters: aoa AOA ao AO Which of cause end up giving us a faulty URL. I suspect…
Brian Andersen
  • 65
  • 1
  • 10
0
votes
1 answer

enable protection against exploiting in delphi

I need writing a safe program and prevent it against exploiting in Delphi. I need to enable all protection and mechanism but i don't understand do it. Protection example: Safe SEH SEH Overwrite Protection(SEHOP) DEP Permanent and How to running my…
HamiD
  • 197
  • 1
  • 2
  • 11
0
votes
1 answer

Unicode problems with Base64 strings and Streams

I have been working on a project in Lazarus and have decided to move it to Delphi XE for the time being (due to some limitations). A brief overview of what is going on: At runtime I am loading external files and adding them to streams. The streams…
user1175743
0
votes
0 answers

????? result when INSERTing with parameters(value directly inside query is fine)

I have a query that is just a simple INSERT into MySQL. When I use DBQuery.Params to add my value to query I get ??????(or E?? E?E???) in the MySQL side(if I perform a SELECT I get this results too ). But when I directly add my value to query…
SAMPro
  • 1,068
  • 1
  • 15
  • 39
0
votes
0 answers

Compile the same program but get different binaries in Delphi XE

I doesn`t have much to do with Delphi but I need to compare the hash of two binaries of the same source code in Delphi XE. To my suprise both binaries differs at many points so the hash is not equal. Did anyone can push me in the right direction…
Sebastian
  • 952
  • 1
  • 14
  • 41
0
votes
0 answers

inheritable record-helper's, how to do it?

The default record-helpers doesn't have that I want. I relize my own record-helper in example for string: type TArhStringHelper = record helper for string procedure ReplaceAll(aOldValue: string; aNewValue: string); procedure…
Alexandr
  • 338
  • 1
  • 4
  • 16
0
votes
1 answer

Delphi - Invalid data type for 'FormVersion'

I get this error every time when I am trying to set at design time from the Delphi IDE an icon to a form. The stack generated by MadExcept exec. date/time : 2010-11-04 05:55 version : 15.0.3953.35171 compiled with : Delphi…
RBA
  • 12,337
  • 16
  • 79
  • 126
0
votes
1 answer

Edit Two Form2's from Form1

Hey guys I have two Form2's from Form1, so I wanted to edit the two Form2's I can do it with c++ for each(Form ^ mForm in Application::OpenForms ) { myForm2= dynamic_cast(mForm); if(myForm2 != nullptr)…
user1979304
  • 91
  • 1
  • 6
0
votes
1 answer

Are there any issues I should watch for installing Delphi 7 on an XP machine with BDS2006 and XE installed already?

I have a development PC where Delphi 2006 and XE are installed and co-existing quite happily. I'm finishing up a job where the client needs to compile the sources, but still uses Delphi 7. I am about to install D7 on my machine, so I can be sure…
rossmcm
  • 5,493
  • 10
  • 55
  • 118
0
votes
3 answers

(Delphi bug) Controls won't remember their position on form

I have a (Delphi bug?) that is annoying me for months: in one of my apps I have some controls (tedit, tbutton, etc) on a TPanel. Every time I close the project and reopen it I find the controls moved few pixels up. After 20-30 closings the controls…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
0
votes
3 answers

Filtering and comparing a date stored as a string in Delphi

Working with a legacy project that has a date stored as a string in the format '6/1/2013' Example of the date range filter I'm trying to do: table.filter := 'stringdate >= ' + QuotedStr(adatepicker.text) + ' and ' + 'stringdate <= ' +…
Richard Holland
  • 2,663
  • 2
  • 21
  • 35