Hi,
das kannst du so machen:
Delphi-Quellcode:
uses ..., ShellAPI;
procedure Systemoptions(wnd: HWND; Applet: String);
begin
ShellExecute(wnd,'open','rundll32.exe',
pchar('shell32.dll,Control_RunDLL ' + Applet),
nil,SW_SHOWNORMAL);
end;
//Aufruf:
procedure TForm1.Button1Click(Sender: TObject);
begin
Systemoptions(self.Handle,'appwiz.cpl');
end;
Folgende Systemsteurungsapplikationen kannst du aufrufen:
access.cpl
appwiz.cpl
desk.cpl
intl.cpl
joy.cpl
main.cpl
mmsys.cpl
modem.cpl
sysdm.cpl
timedate.cpl
Gibt zwar noch ein paar, aber ich weiß jetzt nicht wie die heißen.
Greetz