主题:【求助】调用cpl时的一个问题
use System.Diagnostics.Process:
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
info.FileName = "RUNDLL32.EXE";
info.Arguments = "shell32.dll,Control_RunDLL desk.cpl,,3";
System.Diagnostics.Process.Start( info );
问题:如果rundll32.exe调用的"desk.cpl"文件是通过字符串变量给出的,如何调用此cpl?
多谢指教!