TOndrej

2,962
reputation
314 views

Registered User

name TOndrej
member for 1 year
seen 1 hour ago
website
location Munich, Germany
age 39
I'm just another Delphi type
Dec
3
answered Can I build a Delphi multi language project from the command line?
Dec
1
accepted How can I add a new application / new file wizard to the Delphi IDE “New …” dialog?
Nov
26
comment How to get the current logged on user, including domain in Delphi 2009?
Yes, because the code doesn't seem to work. ;-) I'm trying to find out why.
Nov
26
answered How to get the current logged on user, including domain in Delphi 2009?
Nov
26
answered How can I add a new application / new file wizard to the Delphi IDE “New …” dialog?
Nov
23
accepted Delphi: Proper time to subclass, and restore, a control?
Nov
23
answered How Can I Get the Compile Date and Time in Delphi
Nov
19
comment Use SSL with Delphi yet still having a single exe
A seasoned COBOL programmer can write a COBOL program in any language. ;-)
Nov
19
answered Delphi: Proper time to subclass, and restore, a control?
Nov
19
answered Use SSL with Delphi yet still having a single exe
Nov
17
answered Parameters in query with in clause ?
Nov
13
comment Querying for an Unknown Interface Type
Nice! But even with TInterfacedObject, you could use this: (FObj as IInterface).QueryInterface(GetTypeData(TypeInfo(IntfT)).Guid, Result);
Nov
12
comment How to get performance data from a remote computer using Delphi
You're right, of course. I've overlooked the Linux requirement, sorry.
Nov
12
answered How to get performance data from a remote computer using Delphi
Nov
12
comment How to retrieve cpu usage per process
I forgot to add, that unit was written for Delphi 7, so if you want to use it in Delphi 2009 or later you have to modify it a bit to make it compatible: change the declarations to use AnsiChar instead of Char, PAnsiChar instead of PChar, etc.
Nov
12
answered How to retrieve cpu usage per process
Nov
11
revised Help with sending number to Excel 2007 from Delphi 2010 as a string.
typo
Nov
11
answered Help with sending number to Excel 2007 from Delphi 2010 as a string.
Nov
2
answered Custom drawing in TListview descendant.
Oct
30
comment System Uptime in Delphi 2009
GetTickCount will wrap around to zero after ~49.7 days. Better use the performance counter 'System Up Time' or, on Vista and later versions, GetTickCount64.
Oct
27
awarded  Nice Answer
Oct
20
answered Delphi - unmangle names in BPL’s
Oct
15
comment Determine if running as VCL Forms or Service
Yes it's possible, for example see the socket server (scktsrvr.dpr).
Oct
14
comment How to use consume in process server method with DataSnap 2010
Oops! :-) Nice work.
Oct
14
answered How to use consume in process server method with DataSnap 2010
Oct
12
awarded  Fanatic
Oct
3
revised How to install TWebBrowser in Delphi 2010
fixed typo in title
Sep
17
accepted How can I create a IDataObject instance with Delphi?
Sep
17
awarded  Yearling
Sep
14
answered How do I add Perl scripting support to a Delphi application?
Sep
10
comment Sorting TListbox — Highs and Lows
My apologies, I've overlooked that part. Edited the answer to also suggest virtual style.
Sep
10
revised Sorting TListbox — Highs and Lows
added 113 characters in body
Sep
10
answered Sorting TListbox — Highs and Lows
Sep
7
revised Delphi2010 Compiler error: F2084 Internal Error: L1737
fixed typo; deleted 1 characters in body
Sep
3
comment Single-user source control?
SVN does not require a server, either. Using the file:/// protocol, you can work directly with the file system.
Sep
3
comment Single-user source control?
Just a note: Subversion can also be used without any server, working directly with the file system with the file:/// protocol.
Aug
21
answered Delphi: “Parameter object is improperly defined. Inconsistent or incomplete information was provided.”
Aug
19
comment How do you add a lookup field to a dataset?
I wonder if you edited the question or I was hallucinating. ;-) I thought the question was about calculated fields.
Aug
19
comment How do you add a lookup field to a dataset?
The question was about calculated fields, not lookup fields. I'm not sure if I understand your problem but you could also define persistent fields in code, at runtime, before opening the dataset. In other words, have the FieldDefs created by your code, not automatically by the dataset. There you can define calculated or lookup fields, too.
Aug
19
answered How do you add a lookup field to a dataset?
Aug
19
answered Including resource file in a project by .RC file rather than .RES file
Aug
14
comment Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
Yes that's what I meant, but I don't see anything suspicious in the declaration.
Aug
14
comment Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
Sure, I think it's worth trying. I was hoping you would show the full Delphi source code declaration of the type, otherwise I'm afraid I can't tell you more. Or perhaps the other project is importing the type library incorrectly - it's hard to say.
Aug
14
comment Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
Without the source code, no ideas, sorry. How is structVTIQSnap declared?
Aug
3
comment Wrapping TStringList in a Record
There's already IStrings interface declared in StdVCL and TStringsAdapter in AxCtrls which you can reuse for this purpose if you like, instead of reimplementing them as IStringList and TStringListImpl as shown in the example.
Jul
24
comment Use debug dcus option in Delphi 2009 ?
-1 for "everything goes crazy". :-)
Jul
24
comment Delphi 2006 loses component package
Welcome, I'm glad I could help.
Jul
24
accepted Delphi 2006 loses component package
Jul
24
answered Delphi 2006 loses component package
Jul
24
answered How can I load a package and keep the debugger working?