Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi TimeFormat von TFormatSettings mit Doppelpunkten (https://www.delphipraxis.net/76701-timeformat-von-tformatsettings-mit-doppelpunkten.html)

faux 8. Sep 2006 12:49


TimeFormat von TFormatSettings mit Doppelpunkten
 
Hallo!

Kann es sein, dass das TimeFormat von TFormatSettings (also ShotTimeFormat und LongTimeFormat) keine Doppelpunkt aufnehmen will?
Ich habe folgenden Code:
Delphi-Quellcode:
function TFormMain.GetUserTimeFormat: TFormatSettings;
begin
  Result.LongDateFormat := EditDateFormat.Text;
  Result.ShortDateFormat := EditDateFormat.Text;
  Result.LongTimeFormat := EditTimeFormat.Text;
  Result.ShortTimeFormat := EditTimeFormat.Text;
end;

procedure TFormMain.ButtonUnixToSystemClick(Sender: TObject);
var
  UnixTime: Int64;
begin
  if TryStrToInt64(EditUnixTime.Text, UnixTime) then
  begin
    EditSystemTime.Text := DateTimeToStr(UnixToDateTime(UnixTime), GetUserTimeFormat);
  end;
end;
Wen im EditTimeFormat 'hh:mm:ss' eingetragen ist, so wird nur die Stunde ausgegeben. Trägt man aber 'hh.mm.ss' oder 'hh-mm-ss' ein, so funktionierts einwandfrei. :?
Woran liegt das? Wie kann ich das beheben?

Grüße
Faux


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:27 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz