1
vote
3answers
101 views
how to set array length with delphi 2010 rtti
how to set array length in runtime ?
setLength(t.GetProperty('Propertys'),3); ????
unit Unit3;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Grap …
2
votes
1answer
71 views
Delphi 2010 OXMLDOM
I'm migrating my Delphi 7 app to Delphi 2010. We used the Open XML (from http://www.philo.de/).
In Delphi 2010 it seems to be already built in. In the documentation it says so (ms …
3
votes
1answer
114 views
Issues with nVidia nView desktop manager and Delphi applications?
Hi all,
I've recently had a customer report an issue with my applications and NVidia nView desktop manager. Basically nView seems to 'unhide' hidden secondary forms when moving an …
1
vote
2answers
188 views
How to disable the Formatter in Delphi 2010
Hello,
The formatter in Delphi 2010 is really an annoying thing to me.
I prefer formatting my code manually.
I believe I do it better.
How can I disable it?
NOTE: Answers on why …
5
votes
2answers
103 views
Do Generics Mess Up Interface Name Mapping?
Basically, I want a class to be able to implement two different versions of the same generic interface.
Consider this code
type
// a generic interface
ITest<T> = inte …
34
votes
117answers
13k views
Delphi 2010 Beta: What’s on your wishlist?
Soon Delphi 2010 "Weaver" will enter in beta. (See http://www.embarcadero.com/products/beta_programs.php)
Which would be your most wanted features for the next release of Delphi?
…
0
votes
3answers
93 views
Help with sending number to Excel 2007 from Delphi 2010 as a string.
I'm sending a number to Excel 2007 as a string (Cell.Value := '2,5') using late binding. The actual code is more like:
var CellVal: OLEVariant;
...
CellVal := FloatToStr(2.5); / …
4
votes
7answers
225 views
What Is The Best Practice For Building A Multilingual Application Using Delphi 2010?
I'm in the early stages of converting an older application and I'm trying to figure out the best way to implement multilingual support. I will be using Delphi 2010.
For example if …
1
vote
2answers
87 views
Querying for an Unknown Interface Type
In this code:
TTest<IntfT: IInterface> = class
protected
fObj : TInterfacedObject;
public
function GetVal: IntfT;
end;
How would I implement the GetVal function if I …
1
vote
1answer
130 views
Delphi - How to monitor the network
Hello.
Can someone give me some indications about how to log the web pages accessed(using any web browser)? Should I make a global proxy.... hook the network....? All that I need t …
0
votes
1answer
103 views
How to make the Developer Express popup menus semitransparent like in Firefox?
Hello,
I am using DevExpress Build 47.
Is there a way to make the context(aka popup) menus semi transparent?
0
votes
3answers
79 views
What is “[DCC Fatal Error] frm_Test.pas(381): F2084 Internal Error: C15700”?
Hello,
I am upgrading a project from Delphi 2009 to D2010 and came across the following Internal Error
[DCC Fatal Error] frm_Test.pas(381):
F2084 Internal Error: C15700
wh …
0
votes
1answer
99 views
How do I remove items from the default right-click menu in Delphi 2010?
Who or what inserts the Unicode, right-to-left and IME items at the foot of the default right-click popup menu in Delphi 2010 VCL applications? I would like to remove them for use …
2
votes
3answers
181 views
What is a good library for creating PDFs in Delphi 2010?
What is a good library for creating PDFs in Delphi 2010?
Pre Unicode I used PowerPDF, which though obsolete, was flexible enough to do what I wanted to do (very customized non-db/ …
2
votes
2answers
87 views
Trouble playing with indexed propertes via new RTTI [D2010]
ShowMessage(TRttiContext.Create.GetType(TStringList)
.GetProperty('Strings').ToString);
Above code fails as .GetProperty returns nil on properties like "Strings", "Objects" …
