Function
Item_Open()
Set MyNameSpace = Application.GetNameSpace("mapi")
IF MyNameSpace.CurrentUser <>
"yamada taro" then
Item_Open = False
End if
End Function |
★アイテムを開いた際に発生するイベント
★Outlookルートオブジェクトを取得(NameSpaceオブジェクト)
★現在のOutlookログインユーザーがyamada
taroでないなら
★処理を中止する(=アイテムは開かない)
|