vcldeveloper

262
Reputation
82 views

Registered User

Name vcldeveloper
Member for 11 months
Seen 2 hours ago
Website
Location IR
Age
1d
answered Hide the Recent Documents List inside Ribbon Application Menu in Delphi 2010?
Nov
10
comment How to retrieve cpu usage per process
Yes, just make sure that you count number of CPUs and divide the result by that, otherwise you will get wrong percentage on multi-core systems: uses Windows; function GetCpuCount: Word; var SysInfo : _SYSTEM_INFO; begin GetSystemInfo(SysInfo); Result := SysInfo.dwNumberOfProcessors; end;
Nov
4
answered What is a good, free solution for Richtext editor and convertion to HTML?
Oct
18
awarded  Critic