举个例子吧!在Treeview中目录中有word 文件,若没有安装word ,提示!!(Excel同样方法)<br><br>Procedure Tform1.Proc_LoadReferenceFile();<br>var<br> myword : variant;<br>begin<br> if (Pos('.doc',Tree_Menu.Selected.Text)>0) then<br> begin<br> try<br> myword:=createoleobject('word.application'); //判断是否安装了Word<br> except<br> Application.MessageBox( '您的系统没有安装word,不能查看此文件!', '系统提示!', MB_OK + MB_ICONWarning);<br> exit;<br> end;<br> end;<br>end;