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 code name is Fulcrum. Speculation about Delphi XE prior to its release often referred to this release as Delphi 2011. Delphi XE was ...
75
votes
1answer
3k views
SOAP server and client application VCL+indy demo for Delphi XE?
Delphi used to include a demos folder for web Services, but no longer seems to include this.
I just tried the Delphi 7 demo projects (SOAPDMServerWAD, a server with almost no UI at all, and ...
24
votes
5answers
1k views
TThreadedQueue not capable of multiple consumers?
Trying to use the TThreadedQueue (Generics.Collections) in a single producer multiple consumer scheme. (Delphi-XE).
The idea is to push objects into a queue and let several worker threads draining ...
20
votes
2answers
362 views
Delphi Ownership Confusion
I always thought that the owner is responsible for destroying visual controls and that I can manually control destruction if I pass nil as the owner.
Consider the following example:
TMyForm = class ...
20
votes
1answer
622 views
Hidden Main Menu in a delphi program, automatically shown using Alt key
First, let me say that I abominate this feature in Windows Vista and Windows 7. Second, I want to do it. Here is a question asking how to do what I want here, in WPF.
I want to do the same thing, ...
19
votes
2answers
581 views
What is the difference between the new TFileOpenDialog and the old TOpenDialog?
What is the difference between the new TFileOpenDialog and the old TOpenDialog?
In my computer (Win 7/DXE), when I run the code, the dialogs look the same.
17
votes
6answers
867 views
What is new in multithreading in Delphi XE?
I have seen some time ago people discussing about the new multithreading in Delphi XE and about the fact that Delphi has some 'native' problems because of the way it implements multithreading. And ...
17
votes
5answers
922 views
How hard is it to migrate a project from Delphi 7 to Delphi XE?
Our company have a software that has been in development for over 10 years, so there are some really dated stuff in there. It's still quite functional and everything, but I see the new features on ...
16
votes
1answer
256 views
Which language elements can be annotated using attributes language feature of Delphi?
Delphi 2010 introduced custom attributes which can be added to type declarations and methods. For which language elements can a custom attribute be used?
The examples which I have found so far ...
16
votes
7answers
618 views
Wiki: Current state of the art of Delphi 3rd party TCP/IP components libraries
I've not been doing bare metal TCP/IP for about 18 months, so I wonder what the current state of the art is.
I'm looking for both positive and negative aspects, with development of both server and ...
15
votes
1answer
183 views
Is there a RTL function like StringOfChar which duplicates strings instead of chars?
I am using the StringOfChar function to create a string of chars like this
S := StringOfChar('b', 5); //s is set to 'bbbbb'
Is there any RTL function that does the same (like ...
13
votes
6answers
366 views
Setting multiple labels to transparent across 1.000 forms?
I skinned my software with Devexpress and I found that the labels were non-transparent causing them to have grey background.
There's just endless forms, so I was wondering whether there was a way to ...
13
votes
3answers
2k views
Is TDirect2DCanvas slow or am I doing something wrong?
While looking for alternatives to replace GDI, I was trying to test Delphi's 2010 TDirect2DCanvas performance in Windows 7.
I tested it by drawing a huge polyline using Direct2D and the result was ...
12
votes
2answers
215 views
how auto size the columns width of a list view in virtual mode?
When I use a TListView (ViewStyle = vsReport) I can autofit the width of the columns setting the LVSCW_AUTOSIZE or LVSCW_AUTOSIZE_USEHEADER values in the Width property of each column, now I start ...
12
votes
4answers
352 views
What's the best way to store date values in string format?
I have to store date values (TDateTime) in a string format. What is the best way to do this? I considered the following approaches:
FloatToStr : looses precision, depends on locale settings
...
12
votes
1answer
2k views
What is TMonitor in Delphi System unit good for?
After reading the articles "Simmering Unicode, bring DPL to a boil" and "Simmering Unicode, bring DPL to a boil (Part 2)" of "The Oracle at Delphi" (Allen Bauer), Oracle is all I understand :)
The ...
11
votes
1answer
165 views
How to catch and open files dragged and dropped on an application icon?
How to open a document that was dragged and dropped on the application icon?
11
votes
2answers
405 views
delphi XE multi-unit namespace question
I am reading RAD Studio Documentaion in Delphi XE.
here a some texts.
[ Delphi Reference -> Delphi Language Guide -> Programs and Units -> Using Namespaces -> Searching Namespaces -> Multi-unit ...
11
votes
13answers
2k views
should I move to the new Delphi XE Starter?
I am a Turbo pascal/Borland pascal/Delphi developer, since 1987. I currently only use Delphi for maintaining old tools that I (and some friends of mine) use privately. Unfortunately all my ...
11
votes
2answers
358 views
Delphi XE build events.. globally?
Starting to make a lot of use out of the build events system in XE, but one thing I noticed is that I'm unable to set up default build events in the default project settings. Is there any sort of ...
10
votes
3answers
906 views
Best way to make a component icon in Delphi XE using only the built in tools
In Delphi 7, an image editor program is included, which can read and write .dcr files, which are merely binary resource files (.res files) with a different extension, which by convention indicates ...
10
votes
4answers
253 views
What's the cost of reraising an exception?
Is this
try
DoSomethingThatMightThrowAnException;
except
on E : ESyntaxError do
begin
if (E.ErrorCode = errMissingBracket) then
HandleError
else
raise;
end;
end;
...
10
votes
5answers
721 views
Does Delphi XE produce faster code than Delphi 2007?
I've been using mostly Delphi 2007 for projects that don't need Unicode.
Lately I've been wondering about Delphi XE because
everybody is praising it;
build-in SVN support
I was wondering though, ...
10
votes
4answers
264 views
How can I make my application behave well while monitoring hundreds of real-time devices?
I need to develop a real-time (i.e., info is requested and received at least once per second) monitoring application in Delphi, which monitors multiple remote devices (can be hundreds). The ...
10
votes
9answers
5k views
RAD Studio 2011 ( ? )
is there any information available for the next version ( 2011 ?? ) of Delphi/cbuilder from Embarcadero ?.
Is there some link somewhere pointing to info related to next Delphi / cbuilder , when and ...
9
votes
2answers
96 views
Is there a Delphi equivalent to Java's PermissionManager or AccessController classes?
Are there any classes (free, open source or commercial) that perform access control similar to what Java's AccessController does? I want to create a dynamic set of policies that can be changed at ...
9
votes
1answer
210 views
Why same code executes faster in the thread?
Consider this very simple piece of code:
uses Diagnostics;
const
ITER_COUNT = 100000000;
procedure TForm1.btn2Click(Sender: TObject);
var
val: Double;
i: Integer;
begin
sw := ...
9
votes
4answers
458 views
Game Development in Delphi
I would like to have a go at making some simple games for personal/learning purposes. By simple games I mean games like platform, maze, arcade games for example. I would also one day like to create a ...
9
votes
4answers
313 views
Compiler warning “return value might be undefined”
I often use code along the lines of:
function GetNumber(Handle : THandle) : Integer;
begin
FLock.BeginRead;
try
if FMap.TryGetValue(Handle, Object) then
raise EArgumentException.Create('Invalid ...
9
votes
1answer
605 views
ClientDataset.RefreshRecord no longer works in Delphi XE for joined tables - any workarounds?
TClientDataset.RefreshRecord no longer generates the table join part of SQL when trying to refresh a record on a ClientDataset connected to a dataset with a joined table in the SQL statement.
As a ...
8
votes
1answer
238 views
Why does this code declare a DISTINCT type?
ShlObj.pas line 9922 (as in Delphi XE):
type
BFFCALLBACK = function(Wnd: HWND; uMsg: UINT; lParam, lpData: LPARAM): Integer stdcall;
TFNBFFCallBack = type BFFCALLBACK;
{$EXTERNALSYM ...
8
votes
1answer
148 views
Function returning record with interface field
After asking this question about interface fields in records I assumed that the following would work (notice the assertion):
type
TRec <T> = record
Intf : IInterface;
end;
TTestClass ...
8
votes
2answers
251 views
Access a strict protected property of a Delphi class?
I need to access a strict protected property, because I need to create a validation (based in the value of this property) to avoid a bug. (I don't have the source code of the third party class which ...
8
votes
3answers
179 views
Are conditional expressions broken within packages?
Consider the following snippet:
requires
designide,
rtl,
vcl,
{$IF RTLVersion < 19.0} // E2026 Constant expression expected
//{$IF CompilerVersion = 22.0} // same as above
...
8
votes
1answer
280 views
Can I convert a msxml.IXMLDOMNode to XmlIntf.IXMLNode in Delphi?
I have read som xml into an msxml.IXMLDOMDocument object. However, there is a utility method in an API that I am using, that I would like to call, but it takes an XmlIntf.IXMLNode as an argument.
Is ...
8
votes
1answer
122 views
Adding non-VCL window into VCL align queue
Some background (kind of a continuation of TLabel and TGroupbox Captions Flicker on Resize):
So, I have an application that loads different plugins and creates a
new tab on a TPageControl for each ...
8
votes
2answers
267 views
TLabel and TGroupbox Captions Flicker on Resize
So, I have an application that loads different plugins and creates a
new tab on a TPageControl for each one.
Each DLL has a TForm associated with it.
The forms are created with their parent hWnd as ...
8
votes
1answer
117 views
Weird class instance sizing using class members that are arrays of generic types
Below is a very simple bit of code that mimics a class structure in some code I have (the form just contains a single button attached to the click event). I am using Delphi XE and XE II and see nasty ...
8
votes
3answers
270 views
Efficiently Computing Text Widths
I need to compute the width of a column with many rows (column AutoSize feature). Using Canvas.TextWidth is far too slow.
Current solution: My current solution uses a text measurer class that builds ...
8
votes
1answer
200 views
Delphi compile-time integer conversion warnings?
In Delphi XE or 2006, is there any way to detect at compile time that implicit conversions between integer types may lose data? I realize it's possible to detect this with runtime checking. I would ...
8
votes
2answers
480 views
Delphi GUI Testing and Modal Forms
In this interesting blog post on delphiXtreme I read about DUnit's built-in GUI testing capabilities (basically an alternative test case class TGUITestCase defined in unit GUITesting that has several ...
8
votes
2answers
673 views
Delphi XE with Aero effects causes paint issue
I have upgraded to Delphi XE from 2009 and am experiencing a strange issue.
I create a new project, put down a TRibbon control, compile and run. Keeping the form in its default size I then minimize ...
8
votes
4answers
519 views
Managing null values in variants using delphi
I'm working with a COM component which exposes a lot of Variant properties, but sometimes these values are null. When I try to convert these values to string (or another Delphi type) the application ...
8
votes
1answer
1k views
JSON vs XML parsing speed in Delphi
We are creating an application that uses a lot of XML parsing and I thought maybe to use JSON, because we can use JSON as an alternative to XML.
I need to test which is faster JSON or XML, but ...
8
votes
3answers
1k views
How to switch an Application between Themed and not Themed at run-time?
Very much like the "Project|Options|Application|Enable runtime themes" CheckBox, but dynamically at run-time instead.
[Delphi XE targetting Win XP or Win 7]
I tried playing a bit with ...
7
votes
4answers
159 views
Can I write 'parameterized' tests in DUnit
I am using DUnit to test a Delphi library. I sometimes run into cases, where i write several very similar tests to check multiple inputs to a function.
Is there a way to write (something resembling) ...
7
votes
4answers
599 views
Delphi XE2 : How can I play video files with firemonkey
I want to make a mediaplayer application using with firemonkey but I can't see any component for videoplayer :( I was trying to integrate VLC (VideoLAN player) to firemonkey but the firemonkey ...
7
votes
5answers
372 views
Can I clone an object by copying its memory?
I need to have undo+redo stack for a limited number of classes under my control that has to be very very very fast and using RTTI and XML or streams is not feasible as the count of instances can be as ...
7
votes
1answer
167 views
Delphi - Updating a global string from a second thread
I am experimenting with multithreading in Delphi (XE) and have run into a problem with the use of a Global Variable between the main VCL thread and a second work thread.
My project involves a 2nd ...
7
votes
2answers
419 views
Symbol 'Resume' is deprecated/Thread Error: The handle is invalid (6)
I have an old piece of code that I want to upgrade it to Delphi XE.
I have a compiler warning about Resume and I want to replace it with Start but the program crashes.
constructor ...
7
votes
2answers
250 views
How do you determine from a BPL if it is design time only
We build all our packages to the same output directory.
The directory includes both design time and runtime packages.
Looking at the resulting BPL's is there a way to determine that a packages is ...