Task.ActualFinish 屬性 (Project)
取得或設定任務的實際完成日期。 唯讀的摘要任務。 讀取/寫入 Variant 。
語法
expression。 ActualFinish
表達 代表 Task 物件的變數。
範例
下面範例會提示使用者設定使用中專案中任務的實際完成日期。
Sub SetActualFinishForTasks()
Dim T As Task ' Task object used in For Each loop
Dim Entry As String ' User's entry
For Each T In ActiveProject.Tasks
' Loop until user enters a date or clicks Cancel.
Do While 1
Entry = InputBox$("Enter the actual finish date for " & _
T.Name & ":")
If IsDate(Entry) Or Entry = Empty Then
Exit Do
Else
MsgBox ("You didn't enter a date; try again.")
End If
Loop
'If user didn't click Cancel, set the task's actual finish date.
If Entry <> Empty Then
T.ActualFinish = Entry
End If
Next T
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。