我想用FileExsits好像也不太对。因为SAVEAS时候我的路径是IS_PATH+“\AAA”,文件名也是拼起来的。
2 个解决方案
#1
这个纠结干嘛,直接用返回值判断保存成功或者提示保存完成是否打开调用api把文件打开来处理就行了
#2
Return value
Integer. Returns 1 if it succeeds and -1 if an error occurs. If any argument's value is null, SaveAs returns null.
ingeger li_f
li_f=dw_1.saveas()
if li_<>1 then
messagebox('提示','保存失败')
else
messagebox('提示','文件成功保存至'+IS_PATH+“\AAA.xls”)
end if
其实保存后用FileExsits函数判断一下也是可以的。……
Integer. Returns 1 if it succeeds and -1 if an error occurs. If any argument's value is null, SaveAs returns null.
ingeger li_f
li_f=dw_1.saveas()
if li_<>1 then
messagebox('提示','保存失败')
else
messagebox('提示','文件成功保存至'+IS_PATH+“\AAA.xls”)
end if
其实保存后用FileExsits函数判断一下也是可以的。……
#1
这个纠结干嘛,直接用返回值判断保存成功或者提示保存完成是否打开调用api把文件打开来处理就行了
#2
Return value
Integer. Returns 1 if it succeeds and -1 if an error occurs. If any argument's value is null, SaveAs returns null.
ingeger li_f
li_f=dw_1.saveas()
if li_<>1 then
messagebox('提示','保存失败')
else
messagebox('提示','文件成功保存至'+IS_PATH+“\AAA.xls”)
end if
其实保存后用FileExsits函数判断一下也是可以的。……
Integer. Returns 1 if it succeeds and -1 if an error occurs. If any argument's value is null, SaveAs returns null.
ingeger li_f
li_f=dw_1.saveas()
if li_<>1 then
messagebox('提示','保存失败')
else
messagebox('提示','文件成功保存至'+IS_PATH+“\AAA.xls”)
end if
其实保存后用FileExsits函数判断一下也是可以的。……