解決的方法就是先把下一份文件取到之後再來處理原來要處理的那一份文件..
原來錯誤的寫法如下:
要改成如下的程式嗎
set doc = view.GetFirstDocument()
While Not( doc is nothing)
call doc.remove(True)
set doc = view.GetNextDocument(doc)
Wend
set doc = view.GetFirstDocument()
While Not( doc is nothing)
set doc_tmp = view.GetNextDocument(doc)
call doc.remove(True)
set doc = doc_tmp
Wend

0 意見:
張貼意見