当前位置: 代码迷 >> Windows Mobile >> 请教有哪位高手知道AdobeReaderLE.exe打开pdf的参数是什么
  详细解决方案

请教有哪位高手知道AdobeReaderLE.exe打开pdf的参数是什么

热度:9600   发布时间:2013-02-26 00:00:00.0
请问有谁知道AdobeReaderLE.exe打开pdf的参数是什么
使用
System.Diagnostics.Process.Start("AdobeReaderLE.exe", "-open " + StorageCardName + @"\OA\" + FileName);

来打开pdf文件
该路径没有问题,该路径下也有这个文件
问题是AdobeReaderLE.exe打开了 文件却没有打开
有谁知道 请告知下 谢谢了
------最佳解决方案--------------------------------------------------------
呵呵,刚开始为啥加了个open,而且路径中有空格的要双引号把整个路径包起来~~~
------其他解决方案--------------------------------------------------------
答案已经有了,晕死

System.Diagnostics.Process.Start("AdobeReaderLE.exe", "\"" + StorageCardName + @"\OA\" + FileName + "\"");

------其他解决方案--------------------------------------------------------
该回复于2010-12-13 15:16:38被版主删除
------其他解决方案--------------------------------------------------------
想问下楼主,System.Diagnostics.Process.Start("AdobeReaderLE.exe", 这里是文件路径吧);
  相关解决方案