第一种情况:
r:=ShellExecute(Self.Handle,'open',PChar(sFilePath),'','',SW_SHOWNORMAL);
//ShowMessage(IntToStr(r));第二种情况:
r:=ShellExecute(Self.Handle,'open',PChar(sFilePath),'','',SW_SHOWNORMAL);
ShowMessage(IntToStr(r));同样是执行批处理文件sFilePash,却得到不同结果,这是为什么?