Outlookサポートナビ! ≫≫≫ Outlookフォーム作成/VBSプログラミング
フォルダのパスを取得します。(★取得のみ可能)
オブジェクト
プロパティ
Folder
FolderPath
記述例:
Set MyInBox = Application.GetNameSpace("mapi").GetDefaultFolder(6)
MsgBox MyInbox.FolderPath
→「\\user@a.com\受信トレイ」のようにパスが表示されます。
Set MyPublic = Application.GetNameSpace("mapi).GetDefaultFolder(18) Set OfficeCalendar = MyPublic.Folders("社内予定") strPath = OfficeCalendar.FolderPath Msgbox strPath ★[すべてのパブリックフォルダ―]取得 ★パブリックフォルダ内「社内予定」フォルダ取得 ★社内予定フォルダのパスを取得 ★パスを表示
Set MyPublic = Application.GetNameSpace("mapi).GetDefaultFolder(18)
Set OfficeCalendar = MyPublic.Folders("社内予定")
strPath = OfficeCalendar.FolderPath
Msgbox strPath
★[すべてのパブリックフォルダ―]取得
★パブリックフォルダ内「社内予定」フォルダ取得
★社内予定フォルダのパスを取得
★パスを表示
Set MyFolder = Application.ActiveExplorer.CurrentFolder Msgbox MyFolder.FolderPath ★選択しているフォルダを取得(Folderオブジェクト) ★選択したフォルダのパスを表示 ▼▼(例)フォルダパスが表示されます▼▼ \\User@a.com\受信トレイ\プライベート
Set MyFolder = Application.ActiveExplorer.CurrentFolder Msgbox MyFolder.FolderPath
★選択しているフォルダを取得(Folderオブジェクト)
★選択したフォルダのパスを表示
▼▼(例)フォルダパスが表示されます▼▼
\\User@a.com\受信トレイ\プライベート
≫≫ Outlookフォーム作成/開発/VBSプログラミング ≫≫ Outlookオブジェクトモデルから学ぶ