Download all you need here
Free Source Code
[ Delphi ] – Delete all files within directory
Jul 4th
{You have to FileListBox component on the form}
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
begin
More >
[ Delphi ] – Get the time zone
Jun 4th
function GetTimeZone: string; var TimeZone: TTimeZoneInformation; begin GetTimeZoneInformation(TimeZone); Result := 'GMT ' + IntToStr(TimeZone.Bias div -60); end; More >
[ Delphi ] – Check if the user uses 24 hour format
Jun 4th
function Is24HourTimeFormat: Boolean; var DefaultLCID: LCID; begin DefaultLCID := GetThreadLocale; Result := 0 <> More >

