NTService1.ControlsAccepted = 2  是什么属性?Private Sub NTService1_Continue(Success As Boolean)
On Error GoTo Err_Continue
    Success = True      Success 有什么用?
    Call NTService1.LogEvent(svcEventInformation, svcMessageInfo, "Service continued")
    Exit Sub
Err_Continue:
    Call NTService1.LogEvent(svcMessageError, svcEventError, "[" & Err.Number & "] " & Err.Description)
End SubNTService1_Continue,NTService1_Control方法是什么意思?什么时候执行?NTService1.LogEvent(svcEventInformation, svcMessageInfo, "Service continued")方法的参数是什么意思?
谢谢!