如何在Delphi打开Excel文档时使用修复功能?

问题:在使用Delphi7操作Excel文档时,当文件直接用excle打开时提示“发现不可读取的内容,是否恢复此工作簿的内容?如果信任此工作簿的来源,请单价是”。此时点击“是”,可以打开,再保存后打开就正常,不再提示上述错了,但用Delphi的Application.Workbooks.open方法打开时就会提示类的Open方法无效错误。在MSDN中找到可以用修复方法打开,用VBA 的XlCorruptLoad=xlRepairFile 参数可以正常打开文件。请问?
在Delphi中有没有方法可以使用类似VBA XlCorruptLoad的参数?
以下是我的代码,但没有作用!
FileOv:=CreateOleObject('Excel.Application');
FileOv.Application.DisplayAlerts:=false;
FileOv.Application.Workbooks.open(wjm,EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam,xlRepairFile);

FileOv.Application.Workbooks.open(wjm,EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam, EmptyParam, EmptyParam,
EmptyParam,EmptyParam,xlRepairFile);

https://wenku.baidu.com/view/45f99687e53a580216fcfeee.html
你对照下,15个参数,你好像少一个