別のエージェントを実行する(NotesAgent クラス)

Sub Initialize
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim agent As NotesAgent
	Set db = session.CurrentDatabase
	Set agent = db.GetAgent("Step2-1-NotesUIWorkspace")
	If agent.Run = 0 Then
		Print "エージェントを実行しました。"
	Else
		Print "エージェントを実行できませんでした。"
	End If
End Sub





LotusScript 入門 Step5-1 NotesAgent クラス

4行目 NotesAgent クラスの変数 agent を宣言
6行目 NotesDatabase クラスの GetAgent メソッドから呼び出したいエージェントを取得、変数 agent に格納
7行目 NotesAgent クラスの Run メソッドを実行して、6行目で取得したエージェントを実行。結果をステータスバーに表示

LotusScript
tyoshida
April 30, 2018 at 7:12 PM
Rating
0





No comments yetLogin first to comment...