T tulipfan Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-19 #2 uses SysUtils var D: TDateTime; S, TMP: string; begin TMP := ShortDateFormat; ShortDateFormat := 'm-dd-yyyy'; D := StrToDateTime('3-13-2002 12:32:14'); ShortDateFormat := TMP; S := FormatDateTime('yyyy-m-dd hh:nn:ss', D);
uses SysUtils var D: TDateTime; S, TMP: string; begin TMP := ShortDateFormat; ShortDateFormat := 'm-dd-yyyy'; D := StrToDateTime('3-13-2002 12:32:14'); ShortDateFormat := TMP; S := FormatDateTime('yyyy-m-dd hh:nn:ss', D);