如何从DELPHI5中打开Windows的OPEN WITH, FOLDER OPTIONS对话窗口?(100分)

  • 主题发起人 主题发起人 peng_qs
  • 开始时间 开始时间
有个控件可以实现:ItemProp<br>它可以弹出关于文件、目录的上下文菜单,可以用缺省方式打开文件<br>在www.delphifreestuff.com可以下载最新版本<br><br>安装该控件后,使用PerformDefaultAction函数就可以了。<br><br>uses ItemProp;<br>...<br>procedure TForm1.Button1Click(Sender: TObject);<br>begin<br>&nbsp; &nbsp; &nbsp; &nbsp; if FileExists('E:/Temp/abc.xyz') then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PerformDefaultAction('e:/temp/abc.xyz', Handle)<br>&nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Exit;<br>end;<br><br>
 
www.delphifreestuff.com 这个鬼地方上的去但ItemProp. down不下来!有没有别的<br>站点!或 卖mailto :Yh_01@163.net
 
接受答案了.
 
后退
顶部