Mega Code Archive

 
Categories / Delphi / Forms
 

How to call the systemtime dialog

Title: How to call the systemtime dialog uses Shellapi; procedure TForm1.Button1Click(Sender: TObject); begin ShellExecute(Handle, 'open', 'control', 'date/time', nil, SW_SHOW); end;