Delphi XE2 is a specific version of Delphi. Delphi XE2 was released on September 1, 2011 and is available as a standalone product or as part of RAD Studio XE2.

learn more… | top users | synonyms

6
votes
1answer
1k views

Are the new Delphi XE2 autogenerated build numbers linked to 1.1.2000 00:00:00?

In Delphi XE2 the automatically generated build numbers functionality now uses some kind of date and time generated values, like this: 2.4.4386.838 The last two numbers change each time you build ...
6
votes
1answer
183 views

Implementing EaseIn, EaseOut functions in Delphi

I am trying to implement fluid movement of tabs in TChromeTabs. I can see the easing formulas here, but I am no mathematician and have no idea how to translate this into code. My attempts so far have ...
6
votes
1answer
298 views

Blank value in web service for Int64 type

I consume a web service that has a numeric element. The Delphi wsdl importer sets it up as Int64. The web service allows this element to be blank. However, because it is defined as Int64, when I ...
6
votes
1answer
427 views

How to handle sleep mode network loss with database applications

I have several Delphi programs that maintain connections to a database (some Oracle, some Firebird.) If the program are running while Windows goes into sleep mode the connection to the database is ...
6
votes
1answer
497 views

How to use live binding to bind blob field to TImage control?

I am using Delphi XE2 to write a VCL win32 application. Delphi XE2 support live binding. I load sample Biolife.xml into a TClientDataSet instance. I able to bind a TEdit control to dataset's string ...
6
votes
5answers
1k views

Delphi App has “No Debug Info” when Debugging

We have built an application that uses packages and components. When we debug the application, the "Event Log" in the IDE often shows the our BPLs are being loaded without debug information ("No ...
6
votes
1answer
412 views

How to read data from absolute address in delphi XE2

Let's say that I want to read from absolute address gs:$30 in 64bit mode, so the asm code looks something like: asm mov rax, gs:[$30] end; ...and compiler translate this code to... 65 48 8B ...
6
votes
2answers
988 views

Correct way to create styles for custom components

I sort of asked this question at the end of another post but feel this topic needs a question of its own... If I have created my own component with its own .style what is the correct procedure to ...
6
votes
1answer
350 views

How do I create a bitmap that has a clear background on a transparent form?

I am trying to create a form that is completely transparent on top of which I draw a bitmap with alpha transparency. The problem is that I can't figure out how to set the background of the bitmap to ...
6
votes
3answers
2k views

With Firemonkey, how to give feedback to the user ? (crHourglass)

Usually, when I have a task which takes some time, I use a script like this: procedure Work; var cPrevious: TCursor; begin cPrevious := Screen.Cursor; Screen.Cursor := crHourGlass; try ...
6
votes
1answer
1k views

Delphi THTTPRio how to use authenticating proxy server

I've used the WSDL importer with Delphi XE2 and it has generate a routine that looks like the following, excluding the 3 commented lines where I'm attempting to use a proxy server. function ...
6
votes
0answers
452 views

Recent Failures on Delphi TADOStoredProc / D6 and RAD Studio XE2

Thanks to any that can provide some assistance... Background: I have an application coded and still supported in Borland Delphi v6. Very recently I have had issues with the TADOStoredProc class ...
6
votes
0answers
344 views

Is there a trick to using TSQLMonitor with a TSQLConnection that uses the new ODBC dbExpress driver?

I have been testing the new ODBC dbExpress driver that ships with Delphi XE2, and have noticed that the TSQLMonitor does not seem to work. Thinking that I may have configured the component ...
5
votes
4answers
577 views

How to define application version in one place for multiple applications?

We have a system which consists of numerous applications. All applications have their version changed at the same time. Currently, when we release a new version, we have to manually open the project ...
5
votes
2answers
753 views

How to auto-save in XE2?

Is there any way that I can have the Delphi IDE auto-save all opened projects every X minutes, or just before compilatilation? I looked in XE2 and in Gexperts and didn't see anything, but that means ...
5
votes
5answers
1k views

Simple code to encrypt an .INI file string using a password

I am looking for something more sophisticated than ROT13, but which does not require a library (preferablly not even a unit, just a drop in function). I want to symetrically encrypt/decrypt a given ...
5
votes
5answers
305 views

Is there a function to shift degrees of a circle past 0?

I'm looking for a function somewhere in Delphi XE2 similar to Inc() which allows me to add/subtract a number of degrees from a current number of degrees and result in the new degrees. For example, if ...
5
votes
4answers
321 views

How can I change the caption of a modal form without access to the source?

I have a third party component that displays a print preview form. I would like to change the caption of the preview form to something more appropriate. Unfortunately I do not have the source for the ...
5
votes
2answers
527 views

Identify if a point is within a polygon?

I'm making a custom control in Delphi (inherited from TCustomControl) which consists of a number of polygon list items (irregular shapes). I need to implement mouse events per item, but first I need ...
5
votes
1answer
993 views

How make a form always on top even if the Windows 7 Flip 3D is activated

I'm building an app which needs display a particular form always on top (this is a customer request), so far I'm using the SetWindowPos function with the HWND_TOPMOST value, and that works fine, but ...
5
votes
2answers
2k views

Delphi XE2 AnsiFormat() and ANSI String constants

Is there a handy Format() function that works only on Ansi strings? Because everytime I use an AnsiString with Format() I get a warning. And no, I don't want Delphi to convert my AnsiStrings back and ...
5
votes
2answers
1k views

Style properties for TDateTimePicker

A TDateTime picker is a ComboBox where the drop-down list is replaced with a calendar. I use XE2 VCL Styles and changing style does'nt affect TDateTimePicker Color & Font Color. I have change the ...
5
votes
1answer
1k views

How I can load a Png image from file which have another extension?

I'm using a TImage component to load some png images, but some of them have the .imp extension. I add the Vcl.Imaging.pngimage unit to my code and I'm using this code to load the images if ...
5
votes
4answers
772 views

Migrating from Delphi 2006 to Delphi XE2

There is a code base in delphi 2006 with no development for last many years. If the development needs to be activated what are the options. Continue developing in 2006. (Not sure of IDE support ...
5
votes
2answers
255 views

How to get the lowest cpu consumption when having an infinte loop in a thread

1.I have some infinte loops how can i get the lowest cpu consumption ? Should i use a delay ? 2.If I have multiple threads running in my application and one of them is THREAD_PRIORITY_IDLE does it ...
5
votes
1answer
123 views

Accidental space inserted - Why does this compile?

I accidentally hit the spacebar and wrote this: lTTEvent .CustUpdateStatus := usUnchanged; and was surprised to see that the compiler accepted the space in front of the dot (actually, any number of ...
5
votes
4answers
553 views

Delphi: How to use ShowWindow properly on external application [duplicate]

Possible Duplicate: How can I tell if another instance of my program is already running? i use the following code before starting my application, to check if another instance of it is ...
5
votes
2answers
553 views

JSON empty array

I am trying to parse some JSON that is returned from a REST web service. The return from the get() call is a TStringStream. I'm using dbxjson to work with the data. To make things easier to ...
5
votes
1answer
3k views

How to change the default FireMonkey style in Delphi XE2

I saw a youtube video (can't remember which one) where the user changed an option in Delphi XE2 to change the default style for an entire FireMonkey application. After much hunting I can't find the ...
5
votes
2answers
1k views

Conversion with StrToDateTime and TFormatSettings does not work

This code should work in Delphi XE2, but it gives "not a valid date and time" error in StrtoDateTime conversion: procedure TForm2.Button1Click(Sender: TObject); var s: string; d: TDateTime; ...
5
votes
1answer
927 views

How can I create multiple radio button groups on a single form?

With VCL, we had a TRadioGroup class with an Items property you could modify at design time. With Firemonkey, we only have the TRadioButton class. From what I understand, if you add objects of type ...
5
votes
2answers
464 views

How do I get Delphi to leave my DFM alone?

Using DXE2, I've written a form generator that creates both .pas and .dfm files. I am working on a routine that will allow me to modify different properties in the the dfm, such as Font.Height and ...
5
votes
1answer
614 views

How i can Skin the message box of my app when the vcl styles are activated?

I'm using the Application.MessageBox to show messages on my VCL application, but when the application had a vcl style applied the message window is shown with the windows style instead of the current ...
5
votes
2answers
192 views

How do I instantiate a class from its TRttiType?

I want to create a form given its class name as a string, which has been asked about before, but instead of calling GetClass, I want to use Delphi's new RTTI feature. With this code, I've got a ...
5
votes
2answers
756 views

How can I stop my application showing on the taskbar?

My application has an option for the users to run it only in the system tray, and not in the task bar. This worked fine when my application was built by Delphi 6. After switching to Delphi XE2 it no ...
5
votes
2answers
639 views

Delphi: Access Violation at the end of Create() constructor

I have a very basic and simple class like this: unit Loader; interface uses Vcl.Dialogs; type TLoader = Class(TObject) published constructor Create(); end; implementation { TLoader ...
5
votes
3answers
2k views

Delphi 7 to Delphi XE2 .res file issue

When I open a Delphi 7 Project in Delphi XE2 and open the Project Option I get an error: "Unable to set Icon: Cannot open file "........\AppName_Icon.ico". The system cannot find the file specified". ...
5
votes
2answers
370 views

Delphi XE2, how to keep form ON TOP after changing VCL styles

I encountered a weird issue with XE2: I'm using HWND_TOPMOST with SetWindowPos to set my form on top, but if I switch VCL styles at runtime, the window isn't topmost anymore, and unsetting/re-setting ...
5
votes
1answer
212 views

How to transfer a 32-bit typelib to a 64-bit project (whilst preventing nameclashes)

I've got a type library in a 32-bit Excel add-in app. I need to translate the whole app to 64-bit. I can't just copy paste the typelib, because the GUID's will clash with the already installed ...
5
votes
4answers
1k views

Displaying hints

I have added hints to components on my form. When the components receive the focus, I'd like to set the caption of a label component to display the hint. I have added a TApplicationEvents object and ...
5
votes
2answers
3k views

Delphi XE2 FireMonkey Xcode installation problem

I have Delphi XE2 installed on my Win XP Pro system and Xcode installed on my 4 week old MacBook (my total Mac experience = 4 weeks). Installed paserver, exported an iOS project to Xcode, loaded it ...
5
votes
1answer
694 views

Delphi XE2 EnumWindows not working properly

Using Delphi XE2 update 3 or update 4 on Win7 64 bit. Calling enumwindows does not work like it used to work in Delphi 6. In Delphi 6 enumwindows processed windows until the callback function ...
5
votes
3answers
370 views

Seeking tutorials and information on load-balancing between threads

I know the term "Load Balancing" can be very broad, but the subject I'm trying to explain is more specific, and I don't know the proper terminology. What I'm building is a set of Server/Client ...
5
votes
1answer
166 views

Where is TPath record from System.IOUtils initialized?

TPath record has class constructor TPath.Create which initialize class vars. But, I can't find any unit where TPath.Create is used / called dispite this all vars has correct values ...
5
votes
5answers
2k views

combination without repetition of N elements without use for..to..do

i want load in a list the combination of N number without repetition, giving to input the elements and group. For example, with 4 elements [1,2,3,4], i have for: Group 1: [1][2][3][4]; Group 2: ...
5
votes
3answers
184 views

Can RemObjects SDK parameters be passed via the URI?

We have a RemObjects SDK HTTP server that exposes a number of services and methods. Is it possible to call a method via a URI rather than passing the parameters as SOAP/JSON e.g. ...
5
votes
2answers
346 views

How can I declare an array property?

I constructed class system TTableSpec=class(Tobject) private FName : string; FDescription : string; FCan_add : Boolean; FCan_edit : Boolean; FCan_delete : Boolean; FFields ...
5
votes
1answer
284 views

double-clicking TStaticText in Delphi XE2 app copies caption to clipboard

Double-clicking a TStaticText on a form copies the caption of that TStaticText to the clipboard. No double-click event is needed. Steps to reproduce: Using Win 64 and Delphi XE2 update 4. Create a ...
5
votes
2answers
302 views

How can I execute code stored in a database?

How can I store, for example, the body of a method in a database and later run it? (I'm using Delphi XE2; maybe RTTI would help.)
5
votes
1answer
173 views

Can the JEDI Code Library, Delphi IDE menu item (JCL Options…), be moved?

Is there a way to move the Delphi IDE menu item Tools->JCL Options..., to the bottom of the tools menu?

1 3 4 5 6 7 33