1. 程式人生 > >SetLocalTime API函式設定本地時間(DateTimeToSystemTime函式,把TDateTime轉換成TSystemTime)

SetLocalTime API函式設定本地時間(DateTimeToSystemTime函式,把TDateTime轉換成TSystemTime)

procedure setLocalDateTime(Value: TDateTime);
var
  lSystemDateTime: TSystemTime;
begin
  DateTimeToSystemTime(Value, lSystemDateTime);
  SetLocalTime(lSystemDateTime);
end;
---------------------
作者:清風古韻
來源:CSDN
原文:https://blog.csdn.net/ttpage/article/details/9161739
版權宣告:本文為博主原創文章,轉載請附上博文連結!