Set MyPage = Item.GetInspector.ModifiedFormPages("登録")
Set MySelection = MyPage.ViewCtl1.Selection
x = MySelection.Count
strMsg = ""
For i = 1 to x
strMsg = strMsg & "案件名:" &
MySelection.Item(i).Subject & vbcrlf
Next
Set NewItem = Application.CreateItem(0)
NewItem.subject = "完了通知"
NewItem.Body = "下記案件が終了しました。" & vbcrlf &
strMsg
NewItem.Display |
★アイテム内のページを取得
★ViewCtl内で選択しているアイテム群取得
★選択したアイテム数取得
★本文の変数(strMsg)を初期化
★選択アイテム数分処理を繰り返す
★strMsgは各アイテムの件名+改行(strMsg = strMsg
&…とすることで各アイテムの件名を格納していける)
★新規メッセージ作成
★件名指定
★本文を変数strMsgに指定
★メッセージ表示
|