function FormatDateTime(const Format: string; DateTime: TDateTime): string;
//Im folgenden Beispiel wird mit FormatDateTime die String-Variable S auf einen Satz gesetzt, der auf eine Besprechung in drei Stunden hinweist. //Der Satz hat die folgende Form: "Die Besprechung ist am Mittwoch, 15. November 2002 um 2:30 PM".S := FormatDateTime('"The meeting is on " dddd, mmmm d, yyyy, " at " hh:mm AM/PM', Now + 0.125);