L lunyx_allen Unregistered / Unconfirmed GUEST, unregistred user! 2008-03-28 #1 怎样利用ShellExecute实现 在开始->运行窗口中打开字符串 cmd /c chdir /d I:/AA &cd.exe的功能??也就是运行定位到文件夹I:/AA ,然后运行cd.exe这个程序。 我试了好多次,都快呕吐了还不行!!
怎样利用ShellExecute实现 在开始->运行窗口中打开字符串 cmd /c chdir /d I:/AA &cd.exe的功能??也就是运行定位到文件夹I:/AA ,然后运行cd.exe这个程序。 我试了好多次,都快呕吐了还不行!!
M man8888 Unregistered / Unconfirmed GUEST, unregistred user! 2008-03-28 #2 uses ShellAPI; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin ShellExecute(Handle, PChar('Open'), PChar('cd.exe'), nil, PChar('I:/AA'), SW_SHOWNORMAL); end;
uses ShellAPI; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin ShellExecute(Handle, PChar('Open'), PChar('cd.exe'), nil, PChar('I:/AA'), SW_SHOWNORMAL); end;