User TOndrej - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:10:10Z http://stackoverflow.com/feeds/user/11480 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804590#1804590 1 Answer by TOndrej for How to get the current logged on user, including domain in Delphi 2009? TOndrej 2009-11-26T16:20:27Z 2009-11-26T16:20:27Z <p>Perhaps your <code>IADsWinNTSystemInfo</code> approach (from the linked previous question) returns current process' account information, but ASP.NET is impersonating on a thread level?</p> <p>Try this:</p> <pre><code>type PTokenUser = ^TTokenUser; TTokenUser = packed record User: SID_AND_ATTRIBUTES; end; function GetCurrentUserName(out DomainName, UserName: string): Boolean; var Token: THandle; InfoSize, UserNameSize, DomainNameSize: Cardinal; User: PTokenUser; Use: SID_NAME_USE; _DomainName, _UserName: array[0..255] of Char; begin Result := False; DomainName := ''; UserName := ''; Token := 0; if not OpenThreadToken(GetCurrentThread, TOKEN_QUERY, True, Token) then begin if GetLastError = ERROR_NO_TOKEN then // current thread is not impersonating, try process token begin if not OpenProcessToken(GetCurrentProcess, TOKEN_QUERY, Token) then Exit; end else Exit; end; try GetTokenInformation(Token, TokenUser, nil, 0, InfoSize); User := AllocMem(InfoSize * 2); try if GetTokenInformation(Token, TokenUser, User, InfoSize * 2, InfoSize) then begin DomainNameSize := SizeOf(_DomainName); UserNameSize := SizeOf(_UserName); Result := LookupAccountSid(nil, User^.User.Sid, _UserName, UserNameSize, _DomainName, DomainNameSize, Use); if Result then begin SetString(DomainName, _DomainName, StrLen(_DomainName)); SetString(UserName, _UserName, StrLen(_UserName)); end; end; finally FreeMem(User); end; finally CloseHandle(Token); end; end; </code></pre> <p>Example usage:</p> <pre><code>var DomainName, UserName: string; begin if not GetCurrentUserName(DomainName, UserName) then RaiseLastOSError; Writeln(Format('%s\%s', [DomainName, UserName])); end; </code></pre> <p>Hope this helps.</p> http://stackoverflow.com/questions/1802819/how-can-i-add-a-new-application-new-file-wizard-to-the-delphi-ide-new-dia/1803790#1803790 1 Answer by TOndrej for How can I add a new application / new file wizard to the Delphi IDE "New ..." dialog? TOndrej 2009-11-26T13:53:13Z 2009-11-26T13:53:13Z <p>The source code for the "Visual design of Wizards" article is <a href="http://cc.embarcadero.com/Item/17106" rel="nofollow">here</a>. That code in itself is an example of what you're asking for, but it can also be used to create your "creators" by writing less code and designing more in the IDE object inspector.</p> <p>Basically, to have a new source file item for Delphi's <em>"New Items"</em> dialog you need to implement <code>IOTAModuleCreator</code> ; for a new project item you need to implement <code>IOTAProjectCreator</code>. You can even implement <code>IOTAProjectGroupCreator</code> to add an item which will create a whole project group with several projects at once.</p> <p>Your implementors of these interfaces should generate the source code and return it to the IDE via an implementation of <code>IOTAFile</code> interface. ToolsAPI already contains <code>TOTAFile</code> class which you can easily use by passing it a string of the whole contents of the new file. This will create an unnamed file in memory which the user can then save to hard disk and give it a file name.</p> <p>You can also find more information by following the links in Zarko's article.</p> <p>Also see the ToolsAPI unit where the interfaces are declared. There are also some explanations in the comments.</p> http://stackoverflow.com/questions/1781443/how-can-i-get-the-compile-date-and-time-in-delphi/1781576#1781576 4 Answer by TOndrej for How Can I Get the Compile Date and Time in Delphi TOndrej 2009-11-23T07:24:24Z 2009-11-23T07:24:24Z <p>I also use the PE header timestamp. The problem with it was (at least with older versions) that Delphi did not update it correctly. I'm not sure if this has been fixed in Delphi 2010. I've written an IDE plugin to update the PE header automatically after each compile. You can get it from CodeCentral: <a href="http://cc.embarcadero.com/Item/19823" rel="nofollow">19823 Update PE header TimeDateStamp value after compilation</a>.</p> http://stackoverflow.com/questions/1757162/delphi-proper-time-to-subclass-and-restore-a-control/1762685#1762685 2 Answer by TOndrej for Delphi: Proper time to subclass, and restore, a control? TOndrej 2009-11-19T11:33:31Z 2009-11-19T11:33:31Z <p>It's not clear from your question but I assume you get the errors when you're trying to restore the old window procedure in the form's OnDestroy event handler.</p> <p>ThemeManager reverts its subclassing when processing <code>WM_DESTROY</code> for a control. Therefore you probably have to do the same: watch for <code>WM_DESTROY</code> in your new window procedure and revert your subclassing first, then call the old window procedure (and let ThemeManager do the same thing).</p> <p>I haven't tested this but I think it should work.</p> http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe/1762530#1762530 5 Answer by TOndrej for Use SSL with Delphi yet still having a single exe TOndrej 2009-11-19T11:01:16Z 2009-11-19T11:01:16Z <p>Try <a href="http://www.eldos.com/sbb/delphi-ssl.php" rel="nofollow">SSLBlackBox</a>.</p> http://stackoverflow.com/questions/1747452/parameters-in-query-with-in-clause/1749098#1749098 1 Answer by TOndrej for Parameters in query with in clause ? TOndrej 2009-11-17T14:01:29Z 2009-11-17T14:01:29Z <p>I ended up using a global temporary table in Firebird, inserting parameter values first and to retrieve results I use a regular <code>JOIN</code> instead of a <code>WHERE ... IN</code> clause. The temporary table is transaction-specific and cleared on commit (<code>ON COMMIT DELETE ROWS</code>).</p> http://stackoverflow.com/questions/1721508/how-to-get-performance-data-from-a-remote-computer-using-delphi/1722516#1722516 1 Answer by TOndrej for How to get performance data from a remote computer using Delphi TOndrej 2009-11-12T14:21:47Z 2009-11-12T14:21:47Z <p>Have a look at <a href="http://stackoverflow.com/questions/1704890/how-to-retrieve-cpu-usage-per-process/1721023#1721023">this answer</a>.</p> <p>You could rewrite the <code>GetPerformanceData</code> function to allow connecting to remote registry:</p> <pre><code>function GetPerformanceData(const RegValue: string; const ComputerName: string = ''): PPerfDataBlock; const BufSizeInc = 4096; var BufSize, RetVal: Cardinal; Key: HKEY; begin BufSize := BufSizeInc; Result := AllocMem(BufSize); try if ComputerName = '' then Key := HKEY_PERFORMANCE_DATA else if RegConnectRegistry(PChar(ComputerName), HKEY_PERFORMANCE_DATA, Key) &lt;&gt; ERROR_SUCCESS then RaiseLastOSError; RetVal := RegQueryValueEx(Key, PChar(RegValue), nil, nil, PByte(Result), @BufSize); try repeat case RetVal of ERROR_SUCCESS: Break; ERROR_MORE_DATA: begin Inc(BufSize, BufSizeInc); ReallocMem(Result, BufSize); RetVal := RegQueryValueEx(Key, PChar(RegValue), nil, nil, PByte(Result), @BufSize); end; else RaiseLastOSError; end; until False; finally RegCloseKey(Key); end; except FreeMem(Result); raise; end; end; </code></pre> <p>See the other functions in that unit for an example how to retrieve specific counter values from the returned performance data. Note that they were all written to work locally, so you'll need to modify them to be able to specify computer name as an additional parameter, for example:</p> <pre><code>function GetSystemUpTime(const ComputerName: string = ''): TDateTime; const SecsPerDay = 60 * 60 * 24; var Data: PPerfDataBlock; Obj: PPerfObjectType; Counter: PPerfCounterDefinition; SecsStartup: UInt64; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjSystem), ComputerName); try Obj := GetObjectByNameIndex(Data, ObjSystem); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrSystemUpTime); if not Assigned(Counter) then Exit; SecsStartup := GetCounterValue64(Obj, Counter); // subtract from snapshot time and divide by base frequency and number of seconds per day // to get a TDateTime representation Result := (Obj^.PerfTime.QuadPart - SecsStartup) / Obj^.PerfFreq.QuadPart / SecsPerDay; finally FreeMem(Data); end; end; </code></pre> <p>You can get the perf object and counter indexes by the command <code>lodctr /s:&lt;filename&gt;</code>. For example, 'Pages/sec' counter index is 40 and belongs to perf object 'Memory', index 4. Also have a look <a href="http://msdn.microsoft.com/en-us/library/aa371891%28VS.85%29.aspx" rel="nofollow">here</a> on how to interpret raw counter data, depending on their definition.</p> http://stackoverflow.com/questions/1704890/how-to-retrieve-cpu-usage-per-process/1721023#1721023 0 Answer by TOndrej for How to retrieve cpu usage per process TOndrej 2009-11-12T09:31:18Z 2009-11-12T09:31:18Z <p>See below my PerfUtils unit. You'll need a Delphi translation of Winperf.h, you can use <code>WinPerf.pas</code> from Marcel van Brakel or <code>JwaWinPerf.pas</code> from the <a href="http://jedi-apilib.sourceforge.net/" rel="nofollow">JEDI API Library</a>. Have a look at <code>GetProcessPercentProcessorTime</code> function.</p> <p>Example usage:</p> <pre><code>var Data1, Data2: PPerfDataBlock; ProcessorCount: Integer; PercentProcessorTime: Double; begin ProcessorCount := GetProcessorCount; Data1 := GetPerformanceData(IntToStr(ObjProcess)); Sleep(1000); Data2 := GetPerformanceData(IntToStr(ObjProcess)); PercentProcessorTime := GetProcessPercentProcessorTime(ProcessID, Data1, Data2, ProcessorCount); // ... end; </code></pre> <p>PerfUtils.pas:</p> <pre><code>unit PerfUtils; interface uses Windows, SysUtils, WinPerf; type PPerfLibHeader = ^TPerfLibHeader; TPerfLibHeader = packed record Signature: array[0..7] of Char; DataSize: Cardinal; ObjectCount: Cardinal; end; function GetCounterBlock(Obj: PPerfObjectType): PPerfCounterBlock; overload; function GetCounterBlock(Instance: PPerfInstanceDefinition): PPerfCounterBlock; overload; function GetCounterDataAddress(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): Pointer; overload; function GetCounterDataAddress(Obj: PPerfObjectType; Counter, Instance: Integer): Pointer; overload; function GetCounter(Obj: PPerfObjectType; Index: Integer): PPerfCounterDefinition; function GetCounterByNameIndex(Obj: PPerfObjectType; NameIndex: Cardinal): PPerfCounterDefinition; function GetCounterValue32(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): Cardinal; function GetCounterValue64(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): UInt64; function GetCounterValueText(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): PChar; function GetCounterValueWideText(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): PWideChar; function GetFirstCounter(Obj: PPerfObjectType): PPerfCounterDefinition; function GetFirstInstance(Obj: PPerfObjectType): PPerfInstanceDefinition; function GetFirstObject(Data: PPerfDataBlock): PPerfObjectType; overload; function GetFirstObject(Header: PPerfLibHeader): PPerfObjectType; overload; function GetInstance(Obj: PPerfObjectType; Index: Integer): PPerfInstanceDefinition; function GetInstanceName(Instance: PPerfInstanceDefinition): PWideChar; function GetNextCounter(Counter: PPerfCounterDefinition): PPerfCounterDefinition; function GetNextInstance(Instance: PPerfInstanceDefinition): PPerfInstanceDefinition; function GetNextObject(Obj: PPerfObjectType): PPerfObjectType; function GetObjectSize(Obj: PPerfObjectType): Cardinal; function GetObject(Data: PPerfDataBlock; Index: Integer): PPerfObjectType; overload; function GetObject(Header: PPerfLibHeader; Index: Integer): PPerfObjectType; overload; function GetObjectByNameIndex(Data: PPerfDataBlock; NameIndex: Cardinal): PPerfObjectType; overload; function GetObjectByNameIndex(Header: PPerfLibHeader; NameIndex: Cardinal): PPerfObjectType; overload; function GetPerformanceData(const RegValue: string): PPerfDataBlock; function GetProcessInstance(Obj: PPerfObjectType; ProcessID: Cardinal): PPerfInstanceDefinition; function GetSimpleCounterValue32(ObjIndex, CtrIndex: Integer): Cardinal; function GetSimpleCounterValue64(ObjIndex, CtrIndex: Integer): UInt64; function GetProcessName(ProcessID: Cardinal): WideString; function GetProcessPercentProcessorTime(ProcessID: Cardinal; Data1, Data2: PPerfDataBlock; ProcessorCount: Integer = -1): Double; function GetProcessPrivateBytes(ProcessID: Cardinal): UInt64; function GetProcessThreadCount(ProcessID: Cardinal): Cardinal; function GetProcessVirtualBytes(ProcessID: Cardinal): UInt64; function GetProcessorCount: Integer; function GetSystemProcessCount: Cardinal; function GetSystemUpTime: TDateTime; var PerfFrequency: Int64 = 0; const // perfdisk.dll ObjPhysicalDisk = 234; ObjLogicalDisk = 236; // perfnet.dll ObjBrowser = 52; ObjRedirector = 262; ObjServer = 330; ObjServerWorkQueues = 1300; // perfos.dll ObjSystem = 2; CtrProcesses = 248; CtrSystemUpTime = 674; ObjMemory = 4; ObjCache = 86; ObjProcessor = 238; ObjObjects = 260; ObjPagingFile = 700; // perfproc.dll ObjProcess = 230; CtrPercentProcessorTime = 6; CtrVirtualBytes = 174; CtrPrivateBytes = 186; CtrThreadCount = 680; CtrIDProcess = 784; ObjThread = 232; ObjProcessAddressSpace = 786; ObjImage = 740; ObjThreadDetails = 816; ObjFullImage = 1408; ObjJobObject = 1500; ObjJobObjectDetails = 1548; ObjHeap = 1760; // winspool.drv ObjPrintQueue = 1450; // tapiperf.dll ObjTelephony = 1150; // perfctrs.dll ObjNBTConnection = 502; ObjNetworkInterface = 510; ObjIP = 546; ObjICMP = 582; ObjTCP = 638; ObjUDP = 658; implementation function GetCounterBlock(Obj: PPerfObjectType): PPerfCounterBlock; begin if Assigned(Obj) and (Obj^.NumInstances = PERF_NO_INSTANCES) then Cardinal(Result) := Cardinal(Obj) + SizeOf(TPerfObjectType) + (Obj^.NumCounters * SizeOf(TPerfCounterDefinition)) else Result := nil; end; function GetCounterBlock(Instance: PPerfInstanceDefinition): PPerfCounterBlock; begin if Assigned(Instance) then Cardinal(Result) := Cardinal(Instance) + Instance^.ByteLength else Result := nil; end; function GetCounterDataAddress(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): Pointer; var Block: PPerfCounterBlock; begin Result := nil; if not Assigned(Obj) or not Assigned(Counter) then Exit; if Obj^.NumInstances = PERF_NO_INSTANCES then Block := GetCounterBlock(Obj) else begin if not Assigned(Instance) then Exit; Block := GetCounterBlock(Instance); end; if not Assigned(Block) then Exit; Cardinal(Result) := Cardinal(Block) + Counter^.CounterOffset; end; function GetCounterDataAddress(Obj: PPerfObjectType; Counter, Instance: Integer): Pointer; begin Result := nil; if not Assigned(Obj) or (Counter &lt; 0) or (Cardinal(Counter) &gt; Obj^.NumCounters - 1) then Exit; if Obj^.NumInstances = PERF_NO_INSTANCES then begin if Instance &lt;&gt; -1 then Exit; end else begin if (Instance &lt; 0) or (Instance &gt; Obj^.NumInstances - 1) then Exit; end; Result := GetCounterDataAddress(Obj, GetCounter(Obj, Counter), GetInstance(Obj, Instance)); end; function GetCounter(Obj: PPerfObjectType; Index: Integer): PPerfCounterDefinition; var I: Integer; begin if Assigned(Obj) and (Index &gt;= 0) and (Cardinal(Index) &lt;= Obj^.NumCounters - 1) then begin Result := GetFirstCounter(Obj); if not Assigned(Result) then Exit; for I := 0 to Index - 1 do begin Result := GetNextCounter(Result); if not Assigned(Result) then Exit; end; end else Result := nil; end; function GetCounterByNameIndex(Obj: PPerfObjectType; NameIndex: Cardinal): PPerfCounterDefinition; var Counter: PPerfCounterDefinition; I: Integer; begin Result := nil; Counter := GetFirstCounter(Obj); for I := 0 to Obj^.NumCounters - 1 do begin if not Assigned(Counter) then Exit; if Counter^.CounterNameTitleIndex = NameIndex then begin Result := Counter; Break; end; Counter := GetNextCounter(Counter); end; end; function GetCounterValue32(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): Cardinal; var DataAddr: Pointer; begin Result := 0; DataAddr := GetCounterDataAddress(Obj, Counter, Instance); if not Assigned(DataAddr) then Exit; if Counter^.CounterType and $00000300 = PERF_SIZE_DWORD then // 32-bit value case Counter^.CounterType and $00000C00 of // counter type PERF_TYPE_NUMBER, PERF_TYPE_COUNTER: Result := PCardinal(DataAddr)^; end; end; function GetCounterValue64(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): UInt64; var DataAddr: Pointer; begin Result := 0; DataAddr := GetCounterDataAddress(Obj, Counter, Instance); if not Assigned(DataAddr) then Exit; if Counter^.CounterType and $00000300 = PERF_SIZE_LARGE then // 64-bit value case Counter^.CounterType and $00000C00 of // counter type PERF_TYPE_NUMBER, PERF_TYPE_COUNTER: Result := Uint64(PInt64(DataAddr)^); end; end; function GetCounterValueText(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): PChar; var DataAddr: Pointer; begin Result := nil; DataAddr := GetCounterDataAddress(Obj, Counter, Instance); if not Assigned(DataAddr) then Exit; if Counter^.CounterType and $00000300 = PERF_SIZE_VARIABLE_LEN then // variable-length value if (Counter^.CounterType and $00000C00 = PERF_TYPE_TEXT) and (Counter^.CounterType and $00010000 = PERF_TEXT_ASCII) then Result := PChar(DataAddr); end; function GetCounterValueWideText(Obj: PPerfObjectType; Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition = nil): PWideChar; var DataAddr: Pointer; begin Result := nil; DataAddr := GetCounterDataAddress(Obj, Counter, Instance); if not Assigned(DataAddr) then Exit; if Counter^.CounterType and $00000300 = PERF_SIZE_VARIABLE_LEN then // variable-length value if (Counter^.CounterType and $00000C00 = PERF_TYPE_TEXT) and (Counter^.CounterType and $00010000 = PERF_TEXT_UNICODE) then Result := PWideChar(DataAddr); end; function GetFirstCounter(Obj: PPerfObjectType): PPerfCounterDefinition; begin if Assigned(Obj) then Cardinal(Result) := Cardinal(Obj) + Obj^.HeaderLength else Result := nil; end; function GetFirstInstance(Obj: PPerfObjectType): PPerfInstanceDefinition; begin if not Assigned(Obj) or (Obj^.NumInstances = PERF_NO_INSTANCES) then Result := nil else Cardinal(Result) := Cardinal(Obj) + SizeOf(TPerfObjectType) + (Obj^.NumCounters * SizeOf(TPerfCounterDefinition)); end; function GetFirstObject(Data: PPerfDataBlock): PPerfObjectType; overload; begin if Assigned(Data) then Cardinal(Result) := Cardinal(Data) + Data^.HeaderLength else Result := nil; end; function GetFirstObject(Header: PPerfLibHeader): PPerfObjectType; overload; begin if Assigned(Header) then Cardinal(Result) := Cardinal(Header) + SizeOf(TPerfLibHeader) else Result := nil; end; function GetInstance(Obj: PPerfObjectType; Index: Integer): PPerfInstanceDefinition; var I: Integer; begin if Assigned(Obj) and (Index &gt;= 0) and (Index &lt;= Obj^.NumInstances - 1) then begin Result := GetFirstInstance(Obj); if not Assigned(Result) then Exit; for I := 0 to Index - 1 do begin Result := GetNextInstance(Result); if not Assigned(Result) then Exit; end; end else Result := nil; end; function GetInstanceName(Instance: PPerfInstanceDefinition): PWideChar; begin if Assigned(Instance) then Cardinal(Result) := Cardinal(Instance) + Instance^.NameOffset else Result := nil; end; function GetNextCounter(Counter: PPerfCounterDefinition): PPerfCounterDefinition; begin if Assigned(Counter) then Cardinal(Result) := Cardinal(Counter) + Counter^.ByteLength else Result := nil; end; function GetNextInstance(Instance: PPerfInstanceDefinition): PPerfInstanceDefinition; var Block: PPerfCounterBlock; begin Block := GetCounterBlock(Instance); if Assigned(Block) then Cardinal(Result) := Cardinal(Block) + Block^.ByteLength else Result := nil; end; function GetNextObject(Obj: PPerfObjectType): PPerfObjectType; begin if Assigned(Obj) then Cardinal(Result) := Cardinal(Obj) + Obj^.TotalByteLength else Result := nil; end; function GetObjectSize(Obj: PPerfObjectType): Cardinal; var I: Integer; Instance: PPerfInstanceDefinition; begin Result := 0; if Assigned(Obj) then begin if Obj^.NumInstances = PERF_NO_INSTANCES then Result := Obj^.TotalByteLength else begin Instance := GetFirstInstance(Obj); if not Assigned(Instance) then Exit; for I := 0 to Obj^.NumInstances - 1 do begin Instance := GetNextInstance(Instance); if not Assigned(Instance) then Exit; end; Result := Cardinal(Instance) - Cardinal(Obj); end; end; end; function GetObject(Data: PPerfDataBlock; Index: Integer): PPerfObjectType; var I: Integer; begin if Assigned(Data) and (Index &gt;= 0) and (Cardinal(Index) &lt;= Data^.NumObjectTypes - 1) then begin Result := GetFirstObject(Data); if not Assigned(Result) then Exit; for I := 0 to Index - 1 do begin Result := GetNextObject(Result); if not Assigned(Result) then Exit; end; end else Result := nil; end; function GetObject(Header: PPerfLibHeader; Index: Integer): PPerfObjectType; var I: Integer; begin if Assigned(Header) and (Index &gt;= 0) then begin Result := GetFirstObject(Header); if not Assigned(Result) then Exit; for I := 0 to Index - 1 do begin Result := GetNextObject(Result); if not Assigned(Result) then Exit; end; end else Result := nil; end; function GetObjectByNameIndex(Data: PPerfDataBlock; NameIndex: Cardinal): PPerfObjectType; var Obj: PPerfObjectType; I: Integer; begin Result := nil; Obj := GetFirstObject(Data); for I := 0 to Data^.NumObjectTypes - 1 do begin if not Assigned(Obj) then Exit; if Obj^.ObjectNameTitleIndex = NameIndex then begin Result := Obj; Break; end; Obj := GetNextObject(Obj); end; end; function GetObjectByNameIndex(Header: PPerfLibHeader; NameIndex: Cardinal): PPerfObjectType; overload; var Obj: PPerfObjectType; I: Integer; begin Result := nil; Obj := GetFirstObject(Header); for I := 0 to Header^.ObjectCount - 1 do begin if not Assigned(Obj) then Exit; if Obj^.ObjectNameTitleIndex = NameIndex then begin Result := Obj; Break; end; Obj := GetNextObject(Obj); end; end; function GetPerformanceData(const RegValue: string): PPerfDataBlock; const BufSizeInc = 4096; var BufSize, RetVal: Cardinal; begin BufSize := BufSizeInc; Result := AllocMem(BufSize); try RetVal := RegQueryValueEx(HKEY_PERFORMANCE_DATA, PChar(RegValue), nil, nil, PByte(Result), @BufSize); try repeat case RetVal of ERROR_SUCCESS: Break; ERROR_MORE_DATA: begin Inc(BufSize, BufSizeInc); ReallocMem(Result, BufSize); RetVal := RegQueryValueEx(HKEY_PERFORMANCE_DATA, PChar(RegValue), nil, nil, PByte(Result), @BufSize); end; else RaiseLastOSError; end; until False; finally RegCloseKey(HKEY_PERFORMANCE_DATA); end; except FreeMem(Result); raise; end; end; function GetProcessInstance(Obj: PPerfObjectType; ProcessID: Cardinal): PPerfInstanceDefinition; var Counter: PPerfCounterDefinition; Instance: PPerfInstanceDefinition; Block: PPerfCounterBlock; I: Integer; begin Result := nil; Counter := GetCounterByNameIndex(Obj, CtrIDProcess); if not Assigned(Counter) then Exit; Instance := GetFirstInstance(Obj); for I := 0 to Obj^.NumInstances - 1 do begin Block := GetCounterBlock(Instance); if not Assigned(Block) then Exit; if PCardinal(Cardinal(Block) + Counter^.CounterOffset)^ = ProcessID then begin Result := Instance; Break; end; Instance := GetNextInstance(Instance); end; end; function GetSimpleCounterValue32(ObjIndex, CtrIndex: Integer): Cardinal; var Data: PPerfDataBlock; Obj: PPerfObjectType; Counter: PPerfCounterDefinition; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjIndex)); try Obj := GetObjectByNameIndex(Data, ObjIndex); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrIndex); if not Assigned(Counter) then Exit; Result := GetCounterValue32(Obj, Counter); finally FreeMem(Data); end; end; function GetSimpleCounterValue64(ObjIndex, CtrIndex: Integer): UInt64; var Data: PPerfDataBlock; Obj: PPerfObjectType; Counter: PPerfCounterDefinition; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjIndex)); try Obj := GetObjectByNameIndex(Data, ObjIndex); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrIndex); if not Assigned(Counter) then Exit; Result := GetCounterValue64(Obj, Counter); finally FreeMem(Data); end; end; function GetProcessName(ProcessID: Cardinal): WideString; var Data: PPerfDataBlock; Obj: PPerfObjectType; Instance: PPerfInstanceDefinition; begin Result := ''; Data := GetPerformanceData(IntToStr(ObjProcess)); try Obj := GetObjectByNameIndex(Data, ObjProcess); if not Assigned(Obj) then Exit; Instance := GetProcessInstance(Obj, ProcessID); if not Assigned(Instance) then Exit; Result := GetInstanceName(Instance); finally FreeMem(Data); end; end; function GetProcessPercentProcessorTime(ProcessID: Cardinal; Data1, Data2: PPerfDataBlock; ProcessorCount: Integer): Double; var Value1, Value2: UInt64; function GetValue(Data: PPerfDataBlock): UInt64; var Obj: PPerfObjectType; Instance: PPerfInstanceDefinition; Counter: PPerfCounterDefinition; begin Result := 0; Obj := GetObjectByNameIndex(Data, ObjProcess); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrPercentProcessorTime); if not Assigned(Counter) then Exit; Instance := GetProcessInstance(Obj, ProcessID); if not Assigned(Instance) then Exit; Result := GetCounterValue64(Obj, Counter, Instance); end; begin if ProcessorCount = -1 then ProcessorCount := GetProcessorCount; Value1 := GetValue(Data1); Value2 := GetValue(Data2); Result := 100 * (Value2 - Value1) / (Data2^.PerfTime100nSec.QuadPart - Data1^.PerfTime100nSec.QuadPart) / ProcessorCount; end; function GetProcessPrivateBytes(ProcessID: Cardinal): UInt64; var Data: PPerfDataBlock; Obj: PPerfObjectType; Instance: PPerfInstanceDefinition; Counter: PPerfCounterDefinition; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjProcess)); try Obj := GetObjectByNameIndex(Data, ObjProcess); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrPrivateBytes); if not Assigned(Counter) then Exit; Instance := GetProcessInstance(Obj, ProcessID); if not Assigned(Instance) then Exit; Result := GetCounterValue64(Obj, Counter, Instance); finally FreeMem(Data); end; end; function GetProcessThreadCount(ProcessID: Cardinal): Cardinal; var Data: PPerfDataBlock; Obj: PPerfObjectType; Instance: PPerfInstanceDefinition; Counter: PPerfCounterDefinition; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjProcess)); try Obj := GetObjectByNameIndex(Data, ObjProcess); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrThreadCount); if not Assigned(Counter) then Exit; Instance := GetProcessInstance(Obj, ProcessID); if not Assigned(Instance) then Exit; Result := GetCounterValue32(Obj, Counter, Instance); finally FreeMem(Data); end; end; function GetProcessVirtualBytes(ProcessID: Cardinal): UInt64; var Data: PPerfDataBlock; Obj: PPerfObjectType; Instance: PPerfInstanceDefinition; Counter: PPerfCounterDefinition; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjProcess)); try Obj := GetObjectByNameIndex(Data, ObjProcess); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrVirtualBytes); if not Assigned(Counter) then Exit; Instance := GetProcessInstance(Obj, ProcessID); if not Assigned(Instance) then Exit; Result := GetCounterValue64(Obj, Counter, Instance); finally FreeMem(Data); end; end; function GetProcessorCount: Integer; var Data: PPerfDataBlock; Obj: PPerfObjectType; begin Result := -1; Data := GetPerformanceData(IntToStr(ObjProcessor)); try Obj := GetFirstObject(Data); if not Assigned(Obj) then Exit; Result := Obj^.NumInstances; if Result &gt; 1 then // disregard the additional '_Total' instance Dec(Result); finally FreeMem(Data); end; end; function GetSystemProcessCount: Cardinal; begin Result := GetSimpleCounterValue32(ObjSystem, CtrProcesses); end; function GetSystemUpTime: TDateTime; const SecsPerDay = 60 * 60 * 24; var Data: PPerfDataBlock; Obj: PPerfObjectType; Counter: PPerfCounterDefinition; SecsStartup: UInt64; begin Result := 0; Data := GetPerformanceData(IntToStr(ObjSystem)); try Obj := GetObjectByNameIndex(Data, ObjSystem); if not Assigned(Obj) then Exit; Counter := GetCounterByNameIndex(Obj, CtrSystemUpTime); if not Assigned(Counter) then Exit; SecsStartup := GetCounterValue64(Obj, Counter); // subtract from snapshot time and divide by base frequency and number of seconds per day // to get a TDateTime representation Result := (Obj^.PerfTime.QuadPart - SecsStartup) / Obj^.PerfFreq.QuadPart / SecsPerDay; finally FreeMem(Data); end; end; initialization QueryPerformanceFrequency(PerfFrequency); finalization end. </code></pre> http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string/1716535#1716535 3 Answer by TOndrej for Help with sending number to Excel 2007 from Delphi 2010 as a string. TOndrej 2009-11-11T16:49:45Z 2009-11-11T23:08:51Z <p>Probably because you give it a string. Have you tried passing it the float value directly?</p> http://stackoverflow.com/questions/1661538/custom-drawing-in-tlistview-descendant/1661880#1661880 1 Answer by TOndrej for Custom drawing in TListview descendant. TOndrej 2009-11-02T15:16:57Z 2009-11-02T15:16:57Z <p>Which version of Delphi are you using? In Delphi 2007 TListView has support for custom-drawing by handling NM_CUSTOMDRAW messages, as described <a href="http://msdn.microsoft.com/en-us/library/bb761817%28VS.85%29.aspx" rel="nofollow" title="Customizing a Control's Appearance Using Custom Draw">here</a>. TListView already has events defined for custom-drawing subitems, as well as virtual methods you can override in your descendant.</p> http://stackoverflow.com/questions/1591030/delphi-unmangle-names-in-bpls/1593472#1593472 3 Answer by TOndrej for Delphi - unmangle names in BPL's TOndrej 2009-10-20T09:32:28Z 2009-10-20T09:32:28Z <p>Also see <a href="http://edn.embarcadero.com/article/27758" rel="nofollow" title="Unter der Lupe: Delphi packages">this article</a> (in German). I guess the mangling is probably backward-compatible, and new mangling schemes are introduced in later Delphi versions for new language features.</p> http://stackoverflow.com/questions/1541406/how-to-use-consume-in-process-server-method-with-datasnap-2010/1565241#1565241 0 Answer by TOndrej for How to use consume in process server method with DataSnap 2010 TOndrej 2009-10-14T09:38:51Z 2009-10-14T09:38:51Z <p>See <a href="http://chee-yang.blogspot.com/2009/10/datasnap-in-process-server-method.html" rel="nofollow">DataSnap: In-Process Server Method</a>.</p> http://stackoverflow.com/questions/1418963/how-do-i-add-perl-scripting-support-to-a-delphi-application/1419908#1419908 2 Answer by TOndrej for How do I add Perl scripting support to a Delphi application? TOndrej 2009-09-14T06:08:53Z 2009-09-14T06:08:53Z <p>You could use <a href="http://msdn.microsoft.com/en-us/library/9bbdkx3k%28VS.85%29.aspx" rel="nofollow">Windows Script Host</a> (which comes with VBScript and JScript by default) and install <a href="http://docs.activestate.com/activeperl/5.10/Components/Windows/PerlScript.html" rel="nofollow">PerlScript</a> from ActiveState.</p> http://stackoverflow.com/questions/1405867/sorting-tlistbox-highs-and-lows/1405982#1405982 0 Answer by TOndrej for Sorting TListbox -- Highs and Lows TOndrej 2009-09-10T15:23:42Z 2009-09-10T15:38:11Z <p>To disable updating the listbox control while reordering the strings, use <code>BeginUpdate</code>/<code>EndUpdate</code>:</p> <pre><code>ListBox.Items.BeginUpdate; try // your sorting here... finally ListBox.Items.EndUpdate; end; </code></pre> <p>Edit: You could also try virtual style (<code>Style = lbVirtual</code>, set <code>Count</code> property and handle <code>OnData</code> event).</p> http://stackoverflow.com/questions/1312010/delphi-parameter-object-is-improperly-defined-inconsistent-or-incomplete-infor/1312232#1312232 0 Answer by TOndrej for Delphi: “Parameter object is improperly defined. Inconsistent or incomplete information was provided.” TOndrej 2009-08-21T14:17:35Z 2009-08-21T14:17:35Z <p>You don't need to specify <code>DataType</code>. After a successful call to <code>Prepare;</code> the parameters should be configured correctly, based on the server table definition.</p> <p>My guess is that by assigning <code>DataType</code>, the parameter is probably reset and some information is missing, for example, <code>ParamType</code> should be <code>ptInput</code> but is reset to <code>ptUnknown</code> or something like that.</p> <p>Try removing those lines where you set DataType and see if it helps.</p> http://stackoverflow.com/questions/1297227/how-do-you-add-a-lookup-field-to-a-dataset/1298425#1298425 3 Answer by TOndrej for How do you add a lookup field to a dataset? TOndrej 2009-08-19T08:06:34Z 2009-08-19T08:06:34Z <p>The easiest way is to define persistent fields at design time.</p> <p>You could also modify your SQL statement to get the calculated values from the server.</p> http://stackoverflow.com/questions/1298031/including-resource-file-in-a-project-by-rc-file-rather-than-res-file/1298086#1298086 2 Answer by TOndrej for Including resource file in a project by .RC file rather than .RES file TOndrej 2009-08-19T06:24:37Z 2009-08-19T06:24:37Z <p>See an example here: <a href="http://stackoverflow.com/questions/1153394/how-do-i-make-a-png-resource/">"How do I make a PNG resource?"</a>.</p> http://stackoverflow.com/questions/1176677/delphi-2006-loses-component-package/1177052#1177052 2 Answer by TOndrej for Delphi 2006 loses component package TOndrej 2009-07-24T11:24:09Z 2009-07-24T11:24:09Z <p>The BPL or one of its dependencies could not be found. They may have been found during the installation of the package because of the current directory of the BDS process at the time but not found later because the current directory was then different.</p> <p>Always make sure your BPLs and all their dependencies (statically linked BPLs and DLLs) are in a directory which is included in the system path.</p> http://stackoverflow.com/questions/1169715/how-can-i-load-a-package-and-keep-the-debugger-working/1176553#1176553 0 Answer by TOndrej for How can I load a package and keep the debugger working? TOndrej 2009-07-24T09:13:45Z 2009-07-24T09:13:45Z <p>Check your dependencies. Make sure each unit is compiled into one package only. Whenever a package needs to reference a unit from another package, use the requires clause to do so. Watch for compiler warnings about implicitly linked units.</p> http://stackoverflow.com/questions/1172149/how-to-change-length-of-dynamic-arrays-as-out-parameters/1172233#1172233 5 Answer by TOndrej for How to change length of dynamic arrays as 'out' parameters? TOndrej 2009-07-23T14:40:09Z 2009-07-23T14:40:09Z <p>Declare a new type:</p> <pre><code>type TPointerDynArray = array of Pointer; procedure SeparatePackets(Packet: Pointer; Size: Word; out Result: TPointerDynArray; out Number: Byte); begin Result := nil; // unnecessary: dynamic out parameters are initialized to zero by compiler ... end; </code></pre> http://stackoverflow.com/questions/1164354/delphi-constant-bitwise-expressions/1164412#1164412 6 Answer by TOndrej for Delphi constant bitwise expressions TOndrej 2009-07-22T10:40:33Z 2009-07-22T15:38:42Z <p>Yes, the compiler evaluates the expression at compile time and uses the result value as a constant. There's no gain in declaring another constant with the result value yourself.</p> <p>EDIT: The_Fox is correct. Assignable typed constants (see <code>{$J+}</code> compiler directive) are not treated as constants and the expression is evaluated at runtime in that case.</p> http://stackoverflow.com/questions/1164226/how-to-access-the-member-of-a-classcreated-in-c-in-dephi/1164269#1164269 3 Answer by TOndrej for How to access the member of a class(created in c#) in dephi TOndrej 2009-07-22T10:11:14Z 2009-07-22T10:11:14Z <p>Undeclared identifier means the DateRange interface doesn't have a property called fromdate. Have a look at DateRange declaration in the generated MCenterComService_TLB.pas unit. There you will probably find methods Get_fromdate, Set_fromdate or similar. It's possible that the type library importer doesn't generate property declarations on interfaces. You can still use the getter/setter methods, though.</p> <p>You could also add the property declarations manually yourself.</p> http://stackoverflow.com/questions/1158143/is-inheriting-nested-classes-possible/1158216#1158216 0 Answer by TOndrej for Is Inheriting nested classes possible? TOndrej 2009-07-21T09:42:04Z 2009-07-21T09:42:04Z <pre><code>TParent.x := 10; TParent.TNested.y := 10; </code></pre> http://stackoverflow.com/questions/1153394/how-do-i-make-a-png-resource/1153532#1153532 14 Answer by TOndrej for How do I make a PNG resource? TOndrej 2009-07-20T13:20:42Z 2009-07-20T13:20:42Z <p>Example text file (named myres.rc):</p> <pre><code>MYPNG RCDATA mypng.png </code></pre> <p>Added to project:</p> <pre><code>{$R 'myres.res' 'myres.rc'} </code></pre> <p>Example of loading at runtime:</p> <pre><code>uses PngImage; var Png: TPngImage; begin Png := TPngImage.Create; try Png.LoadFromResourceName(HInstance, 'MYPNG'); Image1.Picture.Graphic := Png; // Image1: TImage on the form finally Png.Free; end; end; </code></pre> http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143355#1143355 10 Answer by TOndrej for How to get the first element in a string? TOndrej 2009-07-17T13:41:23Z 2009-07-17T13:41:23Z <p>Strings are 1-based:</p> <pre><code>if not (myString[1] in ['0'..'9']) then // Do something </code></pre> http://stackoverflow.com/questions/1104380/tmenuitem-shortcuts-overwrite-shortcuts-from-controls-tmemo/1104680#1104680 3 Answer by TOndrej for TMenuItem-Shortcuts overwrite Shortcuts from Controls (TMemo) TOndrej 2009-07-09T15:34:48Z 2009-07-10T13:15:36Z <p>The VCL is designed to give menu item shortcuts precedence. You can, however, write your item click handler (or action execute handler) to do some special handling when ActiveControl is TCustomEdit (call Undo, etc.)</p> <p>Edit: I understand you don't like handling all possible special cases in many places in your code (all menu item or action handlers). I'm afraid I can't give you a completely satisfactory answer but perhaps this will help you find a bit more generic solution. Try the following OnShortCut event handler on your form:</p> <pre><code>procedure TMyForm.FormShortCut(var Msg: TWMKey; var Handled: Boolean); var Message: TMessage absolute Msg; Shift: TShiftState; begin Handled := False; if ActiveControl is TCustomEdit then begin Shift := KeyDataToShiftState(Msg.KeyData); // add more cases if needed Handled := (Shift = [ssCtrl]) and (Msg.CharCode in [Ord('C'), Ord('X'), Ord('V'), Ord('Z')]); if Handled then TCustomEdit(ActiveControl).DefaultHandler(Message); end else if ActiveControl is ... then ... // add more cases as needed end; </code></pre> <p>You could also override IsShortCut method in a similar way and derive your project's forms from this new TCustomForm descendant.</p> http://stackoverflow.com/questions/1108606/is-absolute-faster-than-move/1108620#1108620 6 Answer by TOndrej for is 'absolute' faster than Move()? TOndrej 2009-07-10T09:30:57Z 2009-07-10T09:30:57Z <p>The 'absolute' directive points to the same memory as the specified variable. No code is executed, so yes it is faster than Move or any other code.</p> http://stackoverflow.com/questions/1103607/generic-factory/1103645#1103645 4 Answer by TOndrej for Generic factory TOndrej 2009-07-09T12:46:13Z 2009-07-09T12:46:13Z <pre><code>Result := Model.Create; </code></pre> <p>should work, too.</p> http://stackoverflow.com/questions/1102407/enumerate-running-processes-in-delphi/1102503#1102503 7 Answer by TOndrej for Enumerate running processes in Delphi TOndrej 2009-07-09T08:19:26Z 2009-07-09T09:58:53Z <p>One way is using the <a href="http://msdn.microsoft.com/en-us/library/ms686837%28VS.85%29.aspx" rel="nofollow">Tool Help library</a> (see TlHelp32 unit), or <a href="http://msdn.microsoft.com/en-us/library/ms682629%28VS.85%29.aspx" rel="nofollow">EnumProcesses</a> on Windows NT (see PsAPI unit). Have a look at <code>JclSysInfo.RunningProcessesList</code> in the <a href="http://jcl.delphi-jedi.org/" rel="nofollow" title="JEDI Code Library">JCL</a> for an example.</p> <p>Here's a quick example of how to get the user name of a process:</p> <pre><code>type PTokenUser = ^TTokenUser; TTokenUser = packed record User: SID_AND_ATTRIBUTES; end; function GetProcessUserName(ProcessID: Cardinal; out DomainName, UserName: string): Boolean; var ProcessHandle, ProcessToken: THandle; InfoSize, UserNameSize, DomainNameSize: Cardinal; User: PTokenUser; Use: SID_NAME_USE; _DomainName, _UserName: array[0..255] of Char; begin Result := False; DomainName := ''; UserName := ''; ProcessHandle := OpenProcess(PROCESS_QUERY_INFORMATION or PROCESS_VM_READ, False, ProcessID); if ProcessHandle = 0 then Exit; try if not OpenProcessToken(ProcessHandle, TOKEN_QUERY, ProcessToken) then Exit; try GetTokenInformation(ProcessToken, TokenUser, nil, 0, InfoSize); User := AllocMem(InfoSize * 2); try if GetTokenInformation(ProcessToken, TokenUser, User, InfoSize * 2, InfoSize) then begin DomainNameSize := SizeOf(_DomainName); UserNameSize := SizeOf(_UserName); Result := LookupAccountSid(nil, User^.User.Sid, _UserName, UserNameSize, _DomainName, DomainNameSize, Use); if Result then begin SetString(DomainName, _DomainName, StrLen(_DomainName)); SetString(UserName, _UserName, StrLen(_UserName)); end; end; finally FreeMem(User); end; finally CloseHandle(ProcessToken); end; finally CloseHandle(ProcessHandle); end; end; </code></pre> http://stackoverflow.com/questions/1087912/extents-of-google-map/1091014#1091014 0 Answer by TOndrej for extents of Google map TOndrej 2009-07-07T08:25:49Z 2009-07-07T08:25:49Z <p><code>IHTMLWindow2.execScript</code> from the mentioned EE example should return the return value of the executed script as a Variant. But you don't have to use <code>IHTMLDocument2.parentWindow</code> property. There's also <code>IHTMLDocument.Script</code> which is an <code>IDispatch</code> so you can use it via Variant late binding:</p> <pre><code>var Document: IHTMLDocument; VScript, V: Variant; begin Document := WebBrowser.Document as IHTMLDocument; VScript := Document.Script; V := VScript.HelloJavaScript(); ShowMessage(V); end; </code></pre> <p>HelloJavaScript is a javascript function returning a string:</p> <pre><code>&lt;script language="javascript"&gt; function HelloJavaScript() { s = "Hello, world! (javascript)"; alert(s); return s; } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804590#1804590 Comment by TOndrej on How to get the current logged on user, including domain in Delphi 2009? TOndrej 2009-11-26T17:00:01Z 2009-11-26T17:00:01Z Yes, because the code doesn't seem to work. ;-) I'm trying to find out why. http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe/1762885#1762885 Comment by TOndrej on Use SSL with Delphi yet still having a single exe TOndrej 2009-11-19T15:46:42Z 2009-11-19T15:46:42Z A seasoned COBOL programmer can write a COBOL program in any language. ;-) http://stackoverflow.com/questions/1724133/querying-for-an-unknown-interface-type/1727242#1727242 Comment by TOndrej on Querying for an Unknown Interface Type TOndrej 2009-11-13T12:57:24Z 2009-11-13T12:57:24Z Nice! But even with TInterfacedObject, you could use this: (FObj as IInterface).QueryInterface(GetTypeData(TypeInfo(IntfT)).Guid, Result); http://stackoverflow.com/questions/1721508/how-to-get-performance-data-from-a-remote-computer-using-delphi/1722516#1722516 Comment by TOndrej on How to get performance data from a remote computer using Delphi TOndrej 2009-11-12T15:23:46Z 2009-11-12T15:23:46Z You're right, of course. I've overlooked the Linux requirement, sorry. http://stackoverflow.com/questions/1704890/how-to-retrieve-cpu-usage-per-process/1721023#1721023 Comment by TOndrej on How to retrieve cpu usage per process TOndrej 2009-11-12T09:50:35Z 2009-11-12T09:50:35Z 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. http://stackoverflow.com/questions/1645896/system-uptime-in-delphi-2009/1645967#1645967 Comment by TOndrej on System Uptime in Delphi 2009 TOndrej 2009-10-30T08:54:48Z 2009-10-30T08:54:48Z 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. http://stackoverflow.com/questions/1566907/determine-if-running-as-vcl-forms-or-service/1568611#1568611 Comment by TOndrej on Determine if running as VCL Forms or Service TOndrej 2009-10-15T02:01:17Z 2009-10-15T02:01:17Z Yes it's possible, for example see the socket server (scktsrvr.dpr). http://stackoverflow.com/questions/1541406/how-to-use-consume-in-process-server-method-with-datasnap-2010/1565241#1565241 Comment by TOndrej on How to use consume in process server method with DataSnap 2010 TOndrej 2009-10-14T14:36:21Z 2009-10-14T14:36:21Z Oops! :-) Nice work. http://stackoverflow.com/questions/1405867/sorting-tlistbox-highs-and-lows/1405982#1405982 Comment by TOndrej on Sorting TListbox -- Highs and Lows TOndrej 2009-09-10T15:39:07Z 2009-09-10T15:39:07Z My apologies, I've overlooked that part. Edited the answer to also suggest virtual style. http://stackoverflow.com/questions/1372073/single-user-source-control/1372727#1372727 Comment by TOndrej on Single-user source control? TOndrej 2009-09-03T12:20:52Z 2009-09-03T12:20:52Z SVN does not require a server, either. Using the file:/// protocol, you can work directly with the file system. http://stackoverflow.com/questions/1372073/single-user-source-control/1372215#1372215 Comment by TOndrej on Single-user source control? TOndrej 2009-09-03T09:23:22Z 2009-09-03T09:23:22Z Just a note: Subversion can also be used without any server, working directly with the file system with the file:/// protocol. http://stackoverflow.com/questions/1297227/how-do-you-add-a-lookup-field-to-a-dataset/1298425#1298425 Comment by TOndrej on How do you add a lookup field to a dataset? TOndrej 2009-08-19T12:47:08Z 2009-08-19T12:47:08Z I wonder if you edited the question or I was hallucinating. ;-) I thought the question was about calculated fields. http://stackoverflow.com/questions/1297227/how-do-you-add-a-lookup-field-to-a-dataset/1298425#1298425 Comment by TOndrej on How do you add a lookup field to a dataset? TOndrej 2009-08-19T12:43:05Z 2009-08-19T12:43:05Z 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. http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 Comment by TOndrej on Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# TOndrej 2009-08-14T17:53:11Z 2009-08-14T17:53:11Z Yes that's what I meant, but I don't see anything suspicious in the declaration. http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 Comment by TOndrej on Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# TOndrej 2009-08-14T15:59:43Z 2009-08-14T15:59:43Z 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.