![]() |
TFormatsettings etc unter Delphi 6 ?
Gibt es eine Implementation für GetLocaleFormatSettings und TFormatsettings für Delphi 6 ?
|
AW: TFormatsettings etc unter Delphi 6 ?
Da ich Deinen Source nicht kenne gebe ich Dir das mit auf den Weg.
Beispiel:
Delphi-Quellcode:
könnte man mit Delphi 6 so machen: (quickanddirty)
function StringToDateTime(const Value: String): TDateTime;
var FormatSettings: TFormatSettings; begin GetLocaleFormatSettings(LOCALE_USER_DEFAULT, FormatSettings); FormatSettings.DateSeparator := '_'; FormatSettings.ShortDateFormat := 'dd_mm_yyyy_hh_nn_ss'; Result := StrToDateTime(Value, FormatSettings); end;
Delphi-Quellcode:
Hilft Dir das weiter?
function StringToDateTime(const Value: String): TDateTime;
var ds, sdf: Ansistring; begin ds := DateSeparator; sdf := ShortDateFormat; try DateSeparator := '_'; ShortDateFormat := 'dd_mm_yyyy_hh_nn_ss'; Result := StrToDateTime(Value); finally DateSeparator := ds; ShortDateFormat := sdf; end; end; |
AW: TFormatsettings etc unter Delphi 6 ?
Zitat:
|
AW: TFormatsettings etc unter Delphi 6 ?
Sorry, ich hatte zu wenig Zeit das richtig zu fragen:
ich möchte gern die richtige Implementation von TformatSettings haben. Ich habe das unit Sysutil aus Delphi 7 geholt, aber leider kann ich das nicht (angeblich) direkt benutzen, ich bekomme eine Fehler in eine deklaration:
Delphi-Quellcode:
gibt es bei D6 keine "Class Constructor Create" ? Exception = class(TObject) private FMessage: string; FHelpContext: Integer; FInnerException: Exception; FStackInfo: Pointer; FAcquireInnerException: Boolean; class constructor Create; // <<< Fehler: "[Error]: PROCEDURE or FUNCTION expected ... Btw: ich weiss wie ich die Funktionen umgehe, mit "custom" date/time-funktionen, aber immerhin.. es währe schön wenn ich andere Units nicht umschreiben musste. |
AW: TFormatsettings etc unter Delphi 6 ?
Zitat:
Zitat:
Wenn man bei alten Delphiversionen bleiben möchte, sollte man sich auch auf die dort zur Verfügung stehenden Features beschränken. Oder eben alternativ neue Delphiversionen einsetzen. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:45 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