With the procedure SetDateTime you can set the date and time of the operating system, from within your Delphi application. In the interface-section you define the procedure: procedure SetDateTime(Year, Month, Day, Hour, Minu, Sec, MSec: Word); In the 'implementation' you write...: { SetDateTime sets the date and time of the operating system }
procedure SetDateTime(Year, Month, Day, Hour, Minu, Sec, MSec: Word);
var
NewDateTime: TSystemTime;
begin
FillChar(NewDateTime, SizeOf(NewDateTime), #0);
NewDateTime.wYear := Year;
NewDateTime.wMonth := Month;
NewDateTime.wDay := Day;
NewDateTime.wHour := Hour;
NewDateTime.wMinute := Minu;
NewDateTime.wSecond := Sec;
NewDateTime.wMilliseconds := MSec;
SetLocalTime(NewDateTime);
end; |
|
| Crash Course Delphi | Become member of the DelphiLand Club and get our Crash Course Delphi, plus the fully commented source code of numerous projects, plus guaranteed answers from our Q/A Forum. Membership is for life! |
TOP DelphiLand
Club Membership DC Library TURBO Delphi Explorer FAQ
Forum Forum
Archives Crash Course Delphi Tips Source
Code Downloads Links
© Copyright 1999-2006
Studiebureau Festraets