怎样利用ShellExecute实现 在开始->运行窗口中打开字符串 cmd /c chdir /d I:/AA &cd.exe的功能???(50

  • 主题发起人 主题发起人 lunyx_allen
  • 开始时间 开始时间
L

lunyx_allen

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样利用ShellExecute实现 在开始->运行窗口中打开字符串 cmd /c chdir /d I:/AA &cd.exe的功能??也就是运行定位到文件夹I:/AA ,然后运行cd.exe这个程序。
我试了好多次,都快呕吐了还不行!!
 
uses ShellAPI;
{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute(Handle, PChar('Open'), PChar('cd.exe'), nil,
PChar('I:/AA'), SW_SHOWNORMAL);
end;
 
谢谢大虾
 
后退
顶部