作者:admin 来源: 日期:2020/3/28 12:32:18 人气: 标签:
function SetLocalSysTime(const newTime:TDateTime):Boolean; //设置本地系统时间var MyTime:TsystemTime;begin FillChar(MyTime,sizeof(MyTime),#0); MyTime.wYear := StrToInt(FormatDateTime('yyyy', newTime)); MyTime.wMonth := StrToInt(FormatDateTime('mm', newTime)); MyTime.wDay := StrToInt(FormatDateTime('dd', newTime)); MyTime.wHour := StrToInt(FormatDateTime('hh', newTime)); MyTime.wMinute := StrToInt(FormatDateTime('nn', newTime)); MyTime.wSecond := StrToInt(FormatDateTime('ss', newTime)); Result := SetLocalTime(MyTime); //Result := SetSystemTime(MyTime);end;