(Gast)
n/a Beiträge
|
AW: Dialog "Zeitzone ändern" nachbauen
9. Jul 2015, 13:15
Delphi-Quellcode:
uses Shellapi;
...
ShellExecute( Handle, ' open', ' control', ' date/time', nil, SW_SHOW);
...
Oder so - tut das Gleiche:
Delphi-Quellcode:
procedure TForm1.ButtonClick(Sender: TObject);
var FN, strParams : String;
begin
//rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,/
strParams:= 'shell32.dll,Control_RunDLL timedate.cpl,,/';
FN:='rundll32.exe';
ShellExecute(Application.Handle,NIL,PWChar(FN), PWChar(strParams),NIL, SW_Normal);
end;
Geändert von hathor ( 9. Jul 2015 um 14:04 Uhr)
|
|
Zitat
|